Endpoint Playground
Test Crawlora's Facet 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/facets?facet=status" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | status | Facet enum: status, investor_type, hq_country, hq_state, run_id |
| q | string | No | Full-text query over name and description, max 256 characters | |
| status | string | No | Exact status filter, max 128 characters | |
| investor_type | string | No | Exact investor type filter, 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 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "pitchbook-investors",
"facet": "investor_type",
"items": [
{
"value": "Venture Capital",
"count": 5124
},
{
"value": "Private Equity",
"count": 1893
}
]
}
}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 investors dataset. Facet enum: `status`, `investor_type`, `hq_country`, `hq_state`, `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-investors",
"facet": "investor_type",
"items": [
{
"value": "Venture Capital",
"count": 5124
},
{
"value": "Private Equity",
"count": 1893
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/pitchbook-investors/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"