Endpoint Playground
Test Crawlora's PitchBook Investor Dataset Item 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-investors/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | PitchBook investor id, e.g. 294471-37 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "294471-37",
"kind": "investor",
"name": "Better Capital (California)",
"description": "Founded in 2006, Better Capital is a venture capital firm based in Santa Clara, California.",
"overview": {
"Investor Type": "Venture Capital",
"Status": "Active",
"Investments": "339",
"Portfolio": "218",
"Exits": "49"
},
"contact": {
"Website": "http://www.bettercapital.vc",
"Investor Status": "Actively Seeking New Investments",
"Corporate Office": "1600 Duane Avenue, Santa Clara, CA 95148, United States"
},
"tables": [
{
"name": "Co-Investors",
"total": 843,
"columns": [
"Name",
"With",
"Exits",
"Lead Partner",
"Series",
"Industry"
],
"rows": [
[
"Astir Ventures",
"33",
"",
"",
"",
""
]
]
}
],
"faqs": [
{
"question": "What is Better Capital (California)?",
"answer": "Founded in 2006, Better Capital is a venture capital firm based in Santa Clara, California."
}
],
"investor_type": "Venture Capital",
"status": "Active",
"portfolio_count": 218,
"exits_count": 49,
"investments_count": 339,
"hq_country": "United States",
"hq_state": "CA",
"hq_city": "Santa Clara",
"website": "http://www.bettercapital.vc",
"source_url": "https://pitchbook.com/profiles/investor/294471-37",
"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 investor record by id from dataset id enum value `pitchbook-investors`. 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": "294471-37",
"kind": "investor",
"name": "Better Capital (California)",
"description": "Founded in 2006, Better Capital is a venture capital firm based in Santa Clara, California.",
"overview": {
"Investor Type": "Venture Capital",
"Status": "Active",
"Investments": "339",
"Portfolio": "218",
"Exits": "49"
},
"contact": {
"Website": "http://www.bettercapital.vc",
"Investor Status": "Actively Seeking New Investments",
"Corporate Office": "1600 Duane Avenue, Santa Clara, CA 95148, United States"
},
"tables": [
{
"name": "Co-Investors",
"total": 843,
"columns": [
"Name",
"With",
"Exits",
"Lead Partner",
"Series",
"Industry"
],
"rows": [
[
"Astir Ventures",
"33",
"",
"",
"",
""
]
]
}
],
"faqs": [
{
"question": "What is Better Capital (California)?",
"answer": "Founded in 2006, Better Capital is a venture capital firm based in Santa Clara, California."
}
],
"investor_type": "Venture Capital",
"status": "Active",
"portfolio_count": 218,
"exits_count": 49,
"investments_count": 339,
"hq_country": "United States",
"hq_state": "CA",
"hq_city": "Santa Clara",
"website": "http://www.bettercapital.vc",
"source_url": "https://pitchbook.com/profiles/investor/294471-37",
"crawled_at": "2026-07-20T20:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/datasets/pitchbook-investors/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"