DealCloud (Intapp) API for searching and reading deals, companies, and contacts in a PE/IB firm’s DealCloud tenant. Best for agents that need to look up a deal by name, find records matching a filter, or mark a single field changed. Tenants are self-hosted at .dealcloud.com; users connect by pasting a tenant host plus a client ID and client secret generated in DealCloud (Profile → API Key). 10 example endpoints available through Lava’s AI Gateway. See the DealCloud API docs for full documentation.Documentation Index
Fetch the complete documentation index at: https://lava.so/docs/llms.txt
Use this file to discover all available pages before exploring further.
This is a catch-all provider — any valid URL under
https://api.dealcloud.com is supported. DealCloud API. URL is tenant-specific: https://.dealcloud.com/api/rest/v4/. Schema discovery: /schema/entrytypes, /schema/allfields, /schema/users. Entry data: /data/entrydata//entries (GET), /data/entrydata/ (POST create, PUT upsert, DELETE by ID array), /data/entrydata/rows/ (PATCH strict update). entryTypeId can be numeric (e.g. 2011) or name (e.g. “company”). Bulk endpoints accept up to 1000 entries per request. See https://api.docs.dealcloud.com/ for the full reference. The endpoints below are curated examples.Endpoints
Search entries by field values — answer questions like “find deals in Sourcing status” or “which companies are tagged SaaS”. entryTypeId can be numeric (2011) or a name (“company”, “deal”).
POSThttps://<tenant>.dealcloud.com/api/rest/v4/data/entrydata/rows/query/{entryTypeId} — Free
- SDK
- cURL
Look up one entry by its entryid. Returns all field values for that record. Use when you already know the entryid from a prior list or search.
POSThttps://<tenant>.dealcloud.com/api/rest/v4/data/entrydata/rows/query/{entryTypeId} — Free
- SDK
- cURL
Browse entries in an entry type with full field data, paginated. Use for “show me recent deals” or when no filter is known.
GEThttps://<tenant>.dealcloud.com/api/rest/v4/data/entrydata/rows/{entryTypeId}?limit=25&skip=0&wrapIntoArrays=true — Free
- SDK
- cURL
List the entry types (Company, Deal, Person, Fund, etc.) defined in the tenant. Call this first to know which entry types you can search.
GEThttps://<tenant>.dealcloud.com/api/rest/v4/schema/entrytypes — Free
- SDK
- cURL
List fields across all entry types. Use to learn which field names you can reference in search queries and updates (tenants use custom field names).
GEThttps://<tenant>.dealcloud.com/api/rest/v4/schema/allfields — Free
- SDK
- cURL
List users in the tenant. Useful for looking up a deal owner or verifying the connection works after initial setup.
GEThttps://<tenant>.dealcloud.com/api/rest/v4/schema/users?activeOnly=true — Free
- SDK
- cURL
Update one or more fields on a single existing entry — the typical agent write. Body is a JSON array; pass one element to change one record. Example: mark a deal as Diligence, set a company status to Inactive.
PATCHhttps://<tenant>.dealcloud.com/api/rest/v4/data/entrydata/rows/{entryTypeId} — Free
- SDK
- cURL
Bulk-create entries (up to 1000 per request). Primarily for data migration, not typical agent actions. entryIds on the body must be negative placeholders.
POSThttps://<tenant>.dealcloud.com/api/rest/v4/data/entrydata/{entryTypeId} — Free
- SDK
- cURL
Bulk-upsert entries (up to 1000 per request): existing entryIds update, negative entryIds insert. Primarily for data sync/migration.
PUThttps://<tenant>.dealcloud.com/api/rest/v4/data/entrydata/{entryTypeId} — Free
- SDK
- cURL
Bulk-delete entries by ID. Body is a JSON array of entryIds. Irreversible — agents should rarely reach for this; prefer updating a status field instead.
DELETEhttps://<tenant>.dealcloud.com/api/rest/v4/data/entrydata/{entryTypeId} — Free
- SDK
- cURL
Next Steps
All Providers
Browse all supported AI providers
Forward Proxy
Learn how to construct proxy URLs and authenticate requests