Search for organizations, people, and hubs on Crunchbase using fuzzy matching. Use this endpoint to build search-as-you-type interfaces or to resolve entity names to their Crunchbase slugs before calling detail endpoints.
HTTP Request
| |
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
q | string | Yes | — | Search query (partial or full name) |
type | string | No | — | Filter by entity type: org, person, or hub |
limit | integer | No | — | Maximum number of results to return |
Response
Example Response
| |
Response Fields
| Field | Type | Description |
|---|---|---|
status | boolean | Whether the request was successful |
request_id | string | Unique identifier for the request |
data.organizations | array | List of matching organizations |
data.organizations[].uuid | string | Crunchbase UUID of the organization |
data.organizations[].slug | string | URL slug — use this as the id param in detail endpoints |
data.organizations[].name | string | Display name of the organization |
data.organizations[].type | string | Entity type (always "organization" in this array) |
data.organizations[].image | string | URL to the organization’s logo image |
data.organizations[].short_description | string | Brief description of the organization |
data.people | array | List of matching people (same structure with person-specific fields) |
request_params | object | Echo of the parameters sent in the request |
request_params.q | string | The search query that was used |
request_params.type | string | The type filter that was applied |
request_params.limit | string | The limit that was applied |
Code Examples
| |
| |
| |
Related Endpoints
- Trending — Discover top trending companies without a search query
- Company Details — Get full profile for a company using its slug
- Person Details — Get full profile for a person using their slug