Endpoint Playground
Test Crawlora's Facet PitchBook advisors 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-advisors/facets?facet=service_type" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | service_type | Facet enum: service_type, hq_country, hq_state, run_id |
| q | string | No | Full-text query over name and description, max 256 characters | |
| service_type | string | No | Exact service provider 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_year_founded | integer | No | Minimum founding year | |
| max_year_founded | integer | No | Maximum founding year |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "pitchbook-advisors",
"facet": "service_type",
"items": [
{
"value": "Commercial Bank",
"count": 612
},
{
"value": "Investment Bank",
"count": 389
}
]
}
}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 advisors dataset. Facet enum: `service_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-advisors",
"facet": "service_type",
"items": [
{
"value": "Commercial Bank",
"count": 612
},
{
"value": "Investment Bank",
"count": 389
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/pitchbook-advisors/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"