{ "opencollection": "1.0.0", "info": { "name": "Crunchbase Data API v4", "version": "4.0" }, "request": { "auth": { "type": "apikey", "key": "X-cb-user-key", "value": "{{userKey}}", "in": "header" } }, "items": [ { "info": { "name": "Entity Lookup", "type": "folder" }, "items": [ { "info": { "name": "Look up an entity", "type": "http" }, "http": { "method": "GET", "url": "https://api.crunchbase.com/v4/data/entities/organizations/tesla-motors?field_ids=identifier,short_description,funding_total" }, "docs": "Retrieve a single entity from a collection (organizations, people, funding_rounds, acquisitions) by UUID or permalink." }, { "info": { "name": "Page an entity card", "type": "http" }, "http": { "method": "GET", "url": "https://api.crunchbase.com/v4/data/entities/organizations/tesla-motors/cards/raised_funding_rounds?limit=50" }, "docs": "Page a related card for an entity beyond the 100-item inline limit." } ] }, { "info": { "name": "Search", "type": "folder" }, "items": [ { "info": { "name": "Search a collection", "type": "http" }, "http": { "method": "POST", "url": "https://api.crunchbase.com/v4/data/searches/organizations", "body": { "type": "json", "data": "{\n \"field_ids\": [\"identifier\", \"short_description\", \"location_identifiers\"],\n \"query\": [\n {\n \"type\": \"predicate\",\n \"field_id\": \"categories\",\n \"operator_id\": \"includes\",\n \"values\": [\"artificial-intelligence\"]\n }\n ],\n \"limit\": 50\n}" } }, "docs": "Search a collection with field_ids and AND-combined query predicates. 50 default / 1000 max, keyset pagination via after_id / before_id." } ] }, { "info": { "name": "Autocomplete", "type": "folder" }, "items": [ { "info": { "name": "Autocomplete entities", "type": "http" }, "http": { "method": "GET", "url": "https://api.crunchbase.com/v4/data/autocompletes?query=airbnb&collection_ids=organization.companies&limit=10" }, "docs": "Resolve a query string to matching entity identifiers, optionally scoped to collections. limit max 25." } ] }, { "info": { "name": "Deleted Entities", "type": "folder" }, "items": [ { "info": { "name": "List deleted entities", "type": "http" }, "http": { "method": "GET", "url": "https://api.crunchbase.com/v4/data/deleted_entities?collection_ids=organizations&deleted_at_order=desc&limit=100" }, "docs": "Detect entities removed from the Crunchbase Graph so you can reconcile your own database." }, { "info": { "name": "List deleted entities for a collection", "type": "http" }, "http": { "method": "GET", "url": "https://api.crunchbase.com/v4/data/deleted_entities/organizations?deleted_at_order=desc&limit=100" }, "docs": "Deleted entities scoped to a single collection." } ] } ] }