v1
latestOpenAPI 3.0.32026-07-222085264.6 KBCompany APIs
Search APIs
Search companies with indexed fields only
Search the Crustdata company database using filter conditions. Supports complex AND/OR filter logic, cursor-based pagination, sorting, and field selection. Only indexed fields are searchable; use /company/enrich for non-indexed fields like news, people, or web_traffic. <Note> Default rate-limit is 30 requests per minute. Send an email to gtm@crustdata.co to discuss higher limits if needed for your use case. </Note>
post/company/search
Headers
x-api-version'2025-11-01' required
Example:2025-11-01
API version to use. This endpoint currently requires 2025-11-01.
Request body
Example request
{
"filters": {
"field": "basic_info.primary_domain",
"type": "=",
"value": "hubspot.com"
},
"fields": [
"basic_info",
"headcount",
"funding"
],
"limit": 1
}Response
Companies matching the search criteria
Example response
{
"companies": [],
"next_cursor": null,
"total_count": 0
}