Datasets API endpoint
Use Crawlora's PitchBook LP Dataset Item API to search or inspect stored structured datasets as JSON. This page includes request parameters, cURL examples, response schema, validation behavior, credit cost, and a Playground link for testing before integration. Dataset endpoints read indexed records and do not apply proxy routing.
/datasets/pitchbook-limited-partners/items/{id}Returns one crawled PitchBook limited partner record by id from dataset id enum value `pitchbook-limited-partners`. Developers commonly use this endpoint for repeatable dataset search, filtering, facets, local business enrichment, analytics, exports, and internal tools that need structured records beyond the limited manual refinement available in the Google Maps app. Authentication uses the x-api-key header, usage is metered with the credit cost shown on this page, and the request does not trigger live scraping or proxy routing.
Request parameters are generated from the active endpoint catalog. Dataset parameters filter, page, facet, or locate stored structured records; they do not configure a live scraper or proxy path.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| id (path) | string | Yes | PitchBook limited partner id, e.g. 864326-44 | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/datasets/pitchbook-limited-partners/items/example" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint reads stored indexed dataset records. It does not execute a live upstream Google Maps request, browser session, or proxy-routed scraping job.
- Some limited partner profiles have no FAQ section (`faqs` is an empty list) — PitchBook only generates one for profiles with enough content. This is normal, not a sign of a blocked or broken crawl; the example below is one such profile. Example response: ```json {"code":200,"msg":"OK","data":{"id":"186091-66","kind":"limited-partner","name":"Sippdeal Trustees","description":"Sippdeal Trustees is a private investment firm based in Manchester, United Kingdom. The firm was established in 2000. The assets are managed by the board of directors.","overview":{"Type":"Private Investment Fund","Year Founded":"2000","Professionals":"1","Commitments":"1"},"contact":{"Year Founded":"2000","Institution Type":"Private Investment Fund","Title":"Board Member","Corporate Office":"4 Exchange Quay, Salford Quays, Manchester M5 3EE, England, United Kingdom"},"tables":[{"name":"Commitments","total":1,"columns":["Fund Name","Fund Manager","Fund Location","Vintage","Fund Size","Commitment Date","Commitment"],"rows":[["","Cornerstone Private Equity","London, United Kingdom","2010","","",""]]}],"faqs":[],"institution_type":"Private Investment Fund","year_founded":2000,"contact_title":"Board Member","commitments_count":1,"hq_country":"United Kingdom","hq_state":"England","hq_city":"Manchester M5 3EE","source_url":"https://pitchbook.com/profiles/limited-partner/186091-66","crawled_at":"2026-07-20T20:00:00Z"}} ```
Crawlora does not silently return invalid dataset search results when filters, pagination, coordinates, or stored record lookups cannot be satisfied.
| Status | Common failure case |
|---|---|
| 400 | Invalid input, missing required parameter, invalid enum, bad coordinate pair, or result window beyond the dataset limit |
| 404 | Requested stored dataset item is not present |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal dataset query or storage error |
When possible, Crawlora returns structured error context so your integration can adjust filters, page size, location inputs, or lookup identifiers.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"id": "186091-66",
"kind": "limited-partner",
"name": "Sippdeal Trustees",
"description": "Sippdeal Trustees is a private investment firm based in Manchester, United Kingdom. The firm was established in 2000. The assets are managed by the board of directors.",
"overview": {
"Type": "Private Investment Fund",
"Year Founded": "2000",
"Professionals": "1",
"Commitments": "1"
},
"contact": {
"Year Founded": "2000",
"Institution Type": "Private Investment Fund",
"Title": "Board Member",
"Corporate Office": "4 Exchange Quay, Salford Quays, Manchester M5 3EE, England, United Kingdom"
},
"tables": [
{
"name": "Commitments",
"total": 1,
"columns": [
"Fund Name",
"Fund Manager",
"Fund Location",
"Vintage",
"Fund Size",
"Commitment Date",
"Commitment"
],
"rows": [
[
"",
"Cornerstone Private Equity",
"London, United Kingdom",
"2010",
"",
"",
""
]
]
}
],
"faqs": [],
"institution_type": "Private Investment Fund",
"year_founded": 2000,
"contact_title": "Board Member",
"commitments_count": 1,
"hq_country": "United Kingdom",
"hq_state": "England",
"hq_city": "Manchester M5 3EE",
"source_url": "https://pitchbook.com/profiles/limited-partner/186091-66",
"crawled_at": "2026-07-20T20:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/datasets.pitchbookLimitedPartnerResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | es.PitchbookRecord | No | ||||
| data.commitments_count | integer | No | ||||
| data.contact | object | No | ||||
| data.contact_title | string | No | ||||
| data.crawled_at | string | No | ||||
| data.crawled_at_ms | integer | No | ||||
| data.description | string | No | ||||
| data.discovery_source | string | No | ||||
| data.employees | integer | No | ||||
| data.exits_count | integer | No | ||||
| data.faqs | array | No | ||||
| data.faqs[].answer | string | No | ||||
| data.faqs[].question | string | No | ||||
| data.financing_status | string | No | ||||
| data.formerly_known_as | array | No | ||||
| data.fund_size | string | No | ||||
| data.fund_status | string | No | ||||
| data.fund_strategy | string | No | fund | |||
| data.hq_city | string | No | ||||
| data.hq_country | string | No | ||||
| data.hq_state | string | No | ||||
| data.id | string | No | ||||
| data.institution_type | string | No | limited partner | |||
| data.investments_count | integer | No | ||||
| data.investor_count | integer | No | ||||
| data.investor_type | string | No | investor | |||
| data.kind | string | No | ||||
| data.latest_deal_type | string | No | ||||
| data.managing_firm_name | string | No | ||||
| data.name | string | No | ||||
| data.other_industries | array | No | ||||
| data.overview | object | No | ||||
| data.ownership_status | string | No | ||||
| data.portfolio_count | integer | No | ||||
| data.primary_industry | string | No | ||||
| data.run_id | string | No | ||||
| data.schema_version | integer | No | ||||
| data.seed_rank | integer | No | ||||
| data.service_type | string | No | advisor | |||
| data.serviced_companies | integer | No | ||||
| data.serviced_deals | integer | No | ||||
| data.sitemap_lastmod | string | No | ||||
| data.source_url | string | No | ||||
| data.status | string | No | company | |||
| data.tables | array | No | ||||
| data.tables[].columns | array | No | ||||
| data.tables[].name | string | No | ||||
| data.tables[].row_ids | array | No | RowIDs[i][j] is "<kind>/<id>" when Rows[i][j]'s cell links to another PitchBook profile, "" otherwise. Mirrors services/pitchbook.DataTable.RowIDs. | |||
| data.tables[].rows | array | No | ||||
| data.tables[].total | integer | No | ||||
| data.verticals | array | No | ||||
| data.vintage_year | integer | No | ||||
| data.website | string | No | ||||
| data.year_founded | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/datasets/pitchbook-limited-partners/items/example" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms