DocsAPICompanies

List cap tables

Lists the cap tables imported for a company, most recent first. Returns identifiers only – use the cap table endpoint to fetch the shareholders.

GET
/companies/captables
Query Params

Company ID (required)

Example: 42

Credentials

Bearer
curl -X GET "https://api.fundra.com/v1/companies/captables?company_id=42" \
  -H "Authorization: Bearer <token>"

Successfully retrieved cap tables

{
  "data": [
    {
      "id": "12",
      "date": "2024-03-31",
      "round_name": "Series A",
      "created_at": "2024-04-02T10:30:00Z"
    }
  ]
}