DocsAPIFunds

Delete fund

Deletes a fund. Funds that still hold portfolio companies, or that other records point at, are kept – remove those first. To retire a fund without deleting it, set end_date or is_active: false instead.

DELETE
/funds/{id}
Path

Fund ID

Example: 1

Path Parameters

idRequiredstring

Fund ID

Pattern: "^\\d+$"

Credentials

Bearer
curl -X DELETE "https://api.fundra.com/v1/funds/1" \
  -H "Authorization: Bearer <token>"

Fund deleted

{
  "success": true,
  "id": "1"
}