Endpoint Playground
Test Crawlora's PitchBook limited partner profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/pitchbook/limited-partner" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | PitchBook limited partner id | |
| url | string | No | Absolute https://pitchbook.com/profiles/limited-partner/<id> URL |
{
"code": 200,
"msg": "OK",
"data": {
"kind": "limited-partner",
"id": "864326-44",
"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.",
"overview": {
"Type": "Corporate Pension",
"Year Founded": "1988",
"Professionals": "2"
},
"contact": {
"Institution Type": "Corporate Pension",
"Title": "Chief Financial and Risk Officer",
"Website": "http://www.tkppensioen.nl",
"Corporate Office": "Europaweg 27, 9723 AS Groningen, Netherlands"
},
"tables": [],
"faqs": [
{
"question": "When was TKP Pension founded?",
"answer": "TKP Pension was founded in 1988."
}
],
"source_url": "https://pitchbook.com/profiles/limited-partner/864326-44",
"fetched_at": "2026-07-20T20:37: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 the free/teaser content of a PitchBook limited partner (institutional investor, e.g. pension fund, endowment, or insurance company) profile page: overview, description, contact, and a preview of fund commitments. PitchBook gates most numeric figures and full lists behind a paid subscription; those come through as empty cells rather than being fabricated. Some limited partner profiles have no FAQ section (thinner profiles) -- this is normal, not a sign of a blocked or broken response. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"kind": "limited-partner",
"id": "864326-44",
"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.",
"overview": {
"Type": "Corporate Pension",
"Year Founded": "1988",
"Professionals": "2"
},
"contact": {
"Institution Type": "Corporate Pension",
"Title": "Chief Financial and Risk Officer",
"Website": "http://www.tkppensioen.nl",
"Corporate Office": "Europaweg 27, 9723 AS Groningen, Netherlands"
},
"tables": [],
"faqs": [
{
"question": "When was TKP Pension founded?",
"answer": "TKP Pension was founded in 1988."
}
],
"source_url": "https://pitchbook.com/profiles/limited-partner/864326-44",
"fetched_at": "2026-07-20T20:37:00Z"
}
}curl "https://api.crawlora.net/api/v1/pitchbook/limited-partner" \
-H "x-api-key: $CRAWLORA_API_KEY"