Endpoint Playground
Test Crawlora's PitchBook fund 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/fund" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | PitchBook fund id | |
| url | string | No | Absolute https://pitchbook.com/profiles/fund/<id> URL |
{
"code": 200,
"msg": "OK",
"data": {
"kind": "fund",
"id": "19719-91F",
"name": "AG Credit Solutions Fund II",
"description": "AG Credit Solutions Fund II is a credit special situations fund managed by TPG Angelo Gordon.",
"overview": {
"Fund Strategy": "Credit Special Situations",
"Fund Status": "Closed",
"Fund Manager": "TPG Angelo Gordon",
"Size": "$3.13B",
"Vintage": "2021"
},
"contact": {
"Fund Manager": "TPG Angelo Gordon",
"Fund Manager Website": "https://www.angelogordon.com",
"Fund Manager's Location": "245 Park Avenue, New York, NY 10167, United States",
"Fund Category": "Debt"
},
"tables": [
{
"name": "Limited Partners",
"total": 23,
"columns": [
"Limited Partner Name",
"Type",
"Status",
"Commitment",
"Date",
"Commitment Type"
],
"rows": [
[
"A. Gary Anderson Family Foundation",
"",
"Current",
"",
"30-Apr-2022",
"Original"
]
]
}
],
"faqs": [
{
"question": "What is AG Credit Solutions Fund II?",
"answer": "AG Credit Solutions Fund II is a credit special situations fund managed by TPG Angelo Gordon."
}
],
"source_url": "https://pitchbook.com/profiles/fund/19719-91F",
"fetched_at": "2026-07-08T20: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 the free/teaser content of a PitchBook fund profile page (strategy, status, manager, size, vintage, and a preview of limited partners and benchmark peer funds). PitchBook gates most numeric figures (returns/IRR, full LP lists) behind a paid subscription; those come through as empty cells rather than being fabricated. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"kind": "fund",
"id": "19719-91F",
"name": "AG Credit Solutions Fund II",
"description": "AG Credit Solutions Fund II is a credit special situations fund managed by TPG Angelo Gordon.",
"overview": {
"Fund Strategy": "Credit Special Situations",
"Fund Status": "Closed",
"Fund Manager": "TPG Angelo Gordon",
"Size": "$3.13B",
"Vintage": "2021"
},
"contact": {
"Fund Manager": "TPG Angelo Gordon",
"Fund Manager Website": "https://www.angelogordon.com",
"Fund Manager's Location": "245 Park Avenue, New York, NY 10167, United States",
"Fund Category": "Debt"
},
"tables": [
{
"name": "Limited Partners",
"total": 23,
"columns": [
"Limited Partner Name",
"Type",
"Status",
"Commitment",
"Date",
"Commitment Type"
],
"rows": [
[
"A. Gary Anderson Family Foundation",
"",
"Current",
"",
"30-Apr-2022",
"Original"
]
]
}
],
"faqs": [
{
"question": "What is AG Credit Solutions Fund II?",
"answer": "AG Credit Solutions Fund II is a credit special situations fund managed by TPG Angelo Gordon."
}
],
"source_url": "https://pitchbook.com/profiles/fund/19719-91F",
"fetched_at": "2026-07-08T20:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/pitchbook/fund" \
-H "x-api-key: $CRAWLORA_API_KEY"