Endpoint Playground
Test Crawlora's Search PitchBook investors 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-investors/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. Active, Inactive), max 128 characters | |
| investor_type | string | No | Exact investor type filter (e.g. Venture Capital, Private Equity, Angel), 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_portfolio_count | integer | No | Minimum current portfolio size | |
| min_exits_count | integer | No | Minimum number of exits | |
| sort | string | No | relevance | Sort enum: relevance, name_asc, portfolio_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-investors",
"items": [
{
"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.",
"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"
}
],
"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 investor (fund manager/firm) profile catalog stored in a search index. Discovered from PitchBook's public sitemap. Sort enum: `relevance`, `name_asc`, `portfolio_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-investors",
"items": [
{
"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.",
"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"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "recently_crawled_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/pitchbook-investors/search" \
-H "x-api-key: $CRAWLORA_API_KEY"