Endpoint Playground
Test Crawlora's PitchBook LP Dataset Search 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-limited-partners/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 | |
| institution_type | string | No | Exact institution type filter (e.g. Corporate Pension, Private Investment Fund, Endowment), 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-limited-partners",
"items": [
{
"id": "864326-44",
"kind": "limited-partner",
"name": "TKP Pension",
"description": "TKP Pension is a corporate pension based in Groningen, Netherlands. Established in 1988, the fund manages pensions, offers asset management services, and advises pension funds on legal, tax, actuarial, and investment matters.",
"institution_type": "Corporate Pension",
"year_founded": 1988,
"hq_country": "Netherlands",
"hq_city": "9723 AS Groningen",
"website": "http://www.tkppensioen.nl",
"source_url": "https://pitchbook.com/profiles/limited-partner/864326-44",
"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 limited partner (institutional investor — e.g. pension fund, endowment, insurance company) profile catalog stored in a search index. Discovered from PitchBook's public sitemap. Some limited partner profiles have no FAQ section -- this is normal, not a sign of missing data. 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-limited-partners",
"items": [
{
"id": "864326-44",
"kind": "limited-partner",
"name": "TKP Pension",
"description": "TKP Pension is a corporate pension based in Groningen, Netherlands. Established in 1988, the fund manages pensions, offers asset management services, and advises pension funds on legal, tax, actuarial, and investment matters.",
"institution_type": "Corporate Pension",
"year_founded": 1988,
"hq_country": "Netherlands",
"hq_city": "9723 AS Groningen",
"website": "http://www.tkppensioen.nl",
"source_url": "https://pitchbook.com/profiles/limited-partner/864326-44",
"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-limited-partners/search" \
-H "x-api-key: $CRAWLORA_API_KEY"