Endpoint Playground
Test Crawlora's Search 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/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 | |
| service_type | string | No | Exact service provider type filter (e.g. Commercial Bank, Investment Bank, Financing Advisory), 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 | |
| sort | string | No | relevance | Sort enum: relevance, name_asc, year_founded_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-advisors",
"items": [
{
"id": "676215-64",
"kind": "advisor",
"name": "Main Street Securities",
"description": "Main Street Securities was a financing advisory firm headquartered in Austin, Texas.",
"service_type": "Financing Advisory",
"year_founded": 2022,
"hq_country": "United States",
"hq_state": "TX",
"hq_city": "Austin",
"website": "http://www.mainstreetsecurities.net",
"source_url": "https://pitchbook.com/profiles/advisor/676215-64",
"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 advisor (service provider — e.g. investment bank, lender, financing advisory firm) profile catalog stored in a search index. Discovered from PitchBook's public sitemap. Sort enum: `relevance`, `name_asc`, `year_founded_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-advisors",
"items": [
{
"id": "676215-64",
"kind": "advisor",
"name": "Main Street Securities",
"description": "Main Street Securities was a financing advisory firm headquartered in Austin, Texas.",
"service_type": "Financing Advisory",
"year_founded": 2022,
"hq_country": "United States",
"hq_state": "TX",
"hq_city": "Austin",
"website": "http://www.mainstreetsecurities.net",
"source_url": "https://pitchbook.com/profiles/advisor/676215-64",
"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-advisors/search" \
-H "x-api-key: $CRAWLORA_API_KEY"