Endpoint Playground
Test Crawlora's Search PitchBook funds 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-funds/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 | |
| fund_strategy | string | No | Exact fund strategy filter (e.g. Early Stage VC, Buyout), max 128 characters | |
| fund_status | string | No | Exact fund status filter (e.g. Closed, Raising), max 128 characters | |
| run_id | string | No | Exact crawl run-id filter, max 128 characters | |
| min_vintage_year | integer | No | Minimum vintage year | |
| max_vintage_year | integer | No | Maximum vintage year | |
| sort | string | No | relevance | Sort enum: relevance, name_asc, vintage_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-funds",
"items": [
{
"id": "19719-91F",
"kind": "fund",
"name": "AG Credit Solutions Fund II",
"managing_firm_name": "TPG Angelo Gordon",
"fund_size": "$3.13B",
"source_url": "https://pitchbook.com/profiles/fund/19719-91F",
"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 fund profile catalog stored in a search index. Discovered from PitchBook's public sitemap. Sort enum: `relevance`, `name_asc`, `vintage_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-funds",
"items": [
{
"id": "19719-91F",
"kind": "fund",
"name": "AG Credit Solutions Fund II",
"managing_firm_name": "TPG Angelo Gordon",
"fund_size": "$3.13B",
"source_url": "https://pitchbook.com/profiles/fund/19719-91F",
"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-funds/search" \
-H "x-api-key: $CRAWLORA_API_KEY"