Endpoint Playground
Test Crawlora's PitchBook LP Dataset Item 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/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | PitchBook limited partner id, e.g. 864326-44 |
{
"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"
}
}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 one crawled PitchBook limited partner record by id from dataset id enum value `pitchbook-limited-partners`. 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": {
"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"
}
}curl "https://api.crawlora.net/api/v1/datasets/pitchbook-limited-partners/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"