Endpoint Playground
Test Crawlora's PitchBook investor profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/pitchbook/investor" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | PitchBook investor id | |
| url | string | No | Absolute https://pitchbook.com/profiles/investor/<id> URL |
{
"code": 200,
"msg": "OK",
"data": {
"kind": "investor",
"id": "294471-37",
"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."
}
],
"source_url": "https://pitchbook.com/profiles/investor/294471-37",
"fetched_at": "2026-07-08T20: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 the free/teaser content of a PitchBook investor (fund manager/firm) profile page (overview, description, contact/HQ, and a preview of investments, exits, and co-investors). PitchBook gates most numeric figures and full lists behind a paid subscription; those come through as empty cells rather than being fabricated. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"kind": "investor",
"id": "294471-37",
"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."
}
],
"source_url": "https://pitchbook.com/profiles/investor/294471-37",
"fetched_at": "2026-07-08T20:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/pitchbook/investor" \
-H "x-api-key: $CRAWLORA_API_KEY"