DocsAPIFunds

List LP commitments

Returns what each limited partner has committed to the fund, largest first. Commitments are recorded per vehicle, so an LP investing through more than one entity appears once per vehicle. Defaults to the commitments that still stand – pass is_active=false to see the ones transferred away.

GET
/funds/{id}/lp-commitments
Path

Fund ID

Example: 1

Query Params

Only return commitments made at this closing

Example: 4

Filter by whether the commitment still stands. Defaults to active only.

Example: true

Maximum number of results (1-1000, default: 500)

Example: 500

Number of results to skip (default: 0)

Example: 0

Path Parameters

idRequiredstring

Fund ID

Pattern: "^\\d+$"

Credentials

Bearer
curl -X GET "https://api.fundra.com/v1/funds/1/lp-commitments?closing_id=4&is_active=true" \
  -H "Authorization: Bearer <token>"

Successfully retrieved commitments

{
  "data": [
    {
      "id": "31",
      "uuid": "V1StGXR8",
      "fund_id": "1",
      "commitment": 5000000,
      "limited_partner": {
        "id": "14",
        "name": "Evergreen Pension",
        "legal_name": "Evergreen Pension Trust",
        "type": "Pension fund"
      },
      "vehicle": {
        "id": "12",
        "legal_name": "Evergreen Pension Trust II",
        "type": "Fund"
      },
      "closing": {
        "id": "4",
        "name": "Second closing",
        "closing_date": "2020-09-30",
        "is_final": false
      },
      "transfer_id": null,
      "is_active": true,
      "is_locked": false,
      "is_mgmt_fee_exempt": false,
      "is_mgmt_fee_interest_exempt": false,
      "is_carry_exempt": false,
      "created_at": "2020-09-30T10:30:00Z",
      "updated_at": "2021-01-12T09:00:00Z"
    }
  ],
  "total_committed": 50000000,
  "pagination": {
    "total": 40,
    "limit": 500,
    "offset": 0
  }
}