API Documentation
Access our private equity database programmatically. The API provides RESTful endpoints for funds, managers, LPs, and benchmark data.
Make your first API request to fetch fund data:
curl -X GET "https://api.lp-data.com/v1/funds?strategy=buyout&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"No API key? Request free access to get started.
All API requests require authentication via Bearer token in the Authorization header:
Authorization: Bearer YOUR_API_KEYAPI keys are tied to your account and subject to rate limits based on your subscription tier.
/api/v1/fundsList funds with filtering, sorting, and pagination
/api/v1/funds/{fund_id}Get detailed information about a specific fund
/api/v1/managersList managers with filtering and pagination
/api/v1/managers/{manager_id}Get detailed information about a specific manager
/api/v1/lpsList limited partners with filtering and pagination
/api/v1/lps/{lp_id}Get detailed information about a specific LP
/api/v1/vintage-indicesGet benchmark data by vintage year and strategy
All endpoints return JSON responses with a consistent structure:
{
"items": [
{
"fund_id": "abc123",
"name": "Example Fund I",
"manager_name": "Example Capital",
"strategy": "Buyout",
"vintage_year": 2020,
"irr": 0.185,
"tvpi": 1.45
}
],
"total": 1234,
"limit": 10,
"offset": 0
}API requests are rate limited based on your subscription tier. Rate limit headers are included in all responses:
X-RateLimit-Limit: Maximum requests per monthX-RateLimit-Remaining: Remaining requests this monthX-RateLimit-Reset: Unix timestamp when limit resets
Exceeding rate limits returns a 429 Too Many Requests response.
API Pricing
- Fund search and filtering
- Basic fund details
- Manager lookup
- LP listing
- Rate limited
- Everything in Free
- Full performance data
- Historical time series
- Bulk export endpoints
- Priority support
- Everything in Professional
- Dedicated infrastructure
- Custom data feeds
- SLA guarantee
- Direct integration support