Endpoint Playground
Test Crawlora's Get a PitchBook company from 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/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | PitchBook company id, e.g. 752821-12 |
{
"code": 200,
"msg": "OK",
"data": {
"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.",
"overview": {
"Year Founded": "2024",
"Status": "Private",
"Employees": "130",
"Latest Deal Type": "Early Stage VC",
"Investors": "23"
},
"contact": {
"Website": "http://www.thinkingmachines.ai",
"Ownership Status": "Privately Held (backing)",
"Financing Status": "Venture Capital-Backed",
"Primary Industry": "Business/Productivity Software",
"Corporate Office": "95 3rd Street, 2nd Floor, San Francisco, CA 94103, United States"
},
"tables": [
{
"name": "Investors",
"total": 23,
"columns": [
"Investor Name",
"Investor Type",
"Holding",
"Investor Since",
"Participating Rounds"
],
"rows": [
[
"Accel",
"Venture Capital",
"Minority",
"",
""
]
]
}
],
"faqs": [
{
"question": "When was Thinking Machines Lab founded?",
"answer": "Thinking Machines Lab was founded in 2024."
}
],
"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"
}
}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.
Returns one crawled PitchBook company record by id from dataset id enum value `pitchbook-companies`. 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": {
"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.",
"overview": {
"Year Founded": "2024",
"Status": "Private",
"Employees": "130",
"Latest Deal Type": "Early Stage VC",
"Investors": "23"
},
"contact": {
"Website": "http://www.thinkingmachines.ai",
"Ownership Status": "Privately Held (backing)",
"Financing Status": "Venture Capital-Backed",
"Primary Industry": "Business/Productivity Software",
"Corporate Office": "95 3rd Street, 2nd Floor, San Francisco, CA 94103, United States"
},
"tables": [
{
"name": "Investors",
"total": 23,
"columns": [
"Investor Name",
"Investor Type",
"Holding",
"Investor Since",
"Participating Rounds"
],
"rows": [
[
"Accel",
"Venture Capital",
"Minority",
"",
""
]
]
}
],
"faqs": [
{
"question": "When was Thinking Machines Lab founded?",
"answer": "Thinking Machines Lab was founded in 2024."
}
],
"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"
}
}curl "https://api.crawlora.net/api/v1/datasets/pitchbook-companies/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"