Endpoint Playground
Test Crawlora's Search PitchBook companies dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/pitchbook-companies/search?sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query over name and description, max 256 characters | |
| status | string | No | Exact status filter (e.g. Private, Public, Acquired, Out of Business), max 128 characters | |
| primary_industry | string | No | Exact primary industry filter, max 128 characters | |
| financing_status | string | No | Exact financing status filter, max 128 characters | |
| ownership_status | string | No | Exact ownership status filter, max 128 characters | |
| hq_country | string | No | Exact headquarters country filter, max 128 characters | |
| hq_state | string | No | Exact headquarters state/region filter, max 128 characters | |
| run_id | string | No | Exact crawl run-id filter, max 128 characters | |
| min_year_founded | integer | No | Minimum founding year | |
| max_year_founded | integer | No | Maximum founding year | |
| min_investor_count | integer | No | Minimum number of investors | |
| sort | string | No | relevance | Sort enum: relevance, name_asc, year_founded_desc, investor_count_desc, recently_crawled_desc |
| page | integer | No | Page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "pitchbook-companies",
"items": [
{
"id": "752821-12",
"kind": "company",
"name": "Thinking Machines Lab",
"description": "Developer of artificial intelligence systems designed to support the research and development of AI technologies.",
"status": "Private",
"employees": 130,
"year_founded": 2024,
"investor_count": 23,
"financing_status": "Venture Capital-Backed",
"ownership_status": "Privately Held (backing)",
"primary_industry": "Business/Productivity Software",
"hq_country": "United States",
"hq_state": "CA",
"hq_city": "San Francisco",
"website": "http://www.thinkingmachines.ai",
"source_url": "https://pitchbook.com/profiles/company/752821-12",
"crawled_at": "2026-07-20T20:00:00Z"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "recently_crawled_desc"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches the crawled public PitchBook company profile catalog stored in a search index. Discovered from PitchBook's public sitemap. Sort enum: `relevance`, `name_asc`, `year_founded_desc`, `investor_count_desc`, `recently_crawled_desc`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "pitchbook-companies",
"items": [
{
"id": "752821-12",
"kind": "company",
"name": "Thinking Machines Lab",
"description": "Developer of artificial intelligence systems designed to support the research and development of AI technologies.",
"status": "Private",
"employees": 130,
"year_founded": 2024,
"investor_count": 23,
"financing_status": "Venture Capital-Backed",
"ownership_status": "Privately Held (backing)",
"primary_industry": "Business/Productivity Software",
"hq_country": "United States",
"hq_state": "CA",
"hq_city": "San Francisco",
"website": "http://www.thinkingmachines.ai",
"source_url": "https://pitchbook.com/profiles/company/752821-12",
"crawled_at": "2026-07-20T20:00:00Z"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "recently_crawled_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/pitchbook-companies/search" \
-H "x-api-key: $CRAWLORA_API_KEY"