Endpoint Playground
Test Crawlora's Facet 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/facets?facet=fund_strategy" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | fund_strategy | Facet enum: fund_strategy, fund_status, run_id |
| q | string | No | Full-text query over name and description, max 256 characters | |
| fund_strategy | string | No | Exact fund strategy filter, max 128 characters | |
| fund_status | string | No | Exact fund status filter, 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 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "pitchbook-funds",
"facet": "fund_strategy",
"items": [
{
"value": "Early Stage VC",
"count": 2318
},
{
"value": "Buyout",
"count": 941
}
]
}
}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 terms aggregation counts for the PitchBook funds dataset. Facet enum: `fund_strategy`, `fund_status`, `run_id`. 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",
"facet": "fund_strategy",
"items": [
{
"value": "Early Stage VC",
"count": 2318
},
{
"value": "Buyout",
"count": 941
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/pitchbook-funds/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"