DocsAPIFunding rounds

List funding rounds

Returns a paginated list of funding rounds, most recent first. Funding rounds belong to a company and are shared by every fund invested in it.

GET
/funding-rounds
Query Params

Only return rounds for this company

Example: 42

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

Example: 500

Number of results to skip (default: 0)

Example: 0

Credentials

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

Successfully retrieved funding rounds

{
  "data": [
    {
      "id": "5",
      "uuid": "V1StGXR8",
      "company_id": "42",
      "date": "2023-06-15",
      "round_identifier": "Series A",
      "round_type": "priced",
      "is_internal_round": false,
      "is_pending_close": false,
      "closed_on": "2023-07-01",
      "liquidation_preference": "pari-passu",
      "share_class": "Series A",
      "currency": "EUR",
      "share_price": 10.5,
      "shares_issued": 190476,
      "shares_outstanding": 1190476,
      "esop": 100000,
      "round_size_override": 2000000,
      "pre_money": 8000000,
      "round_size": 2000000,
      "post_money": 10000000,
      "fields": {
        "property1": null,
        "property2": null
      },
      "created_at": "2023-06-16T10:30:00Z",
      "updated_at": "2023-06-20T14:45:00Z"
    }
  ],
  "pagination": {
    "total": 12,
    "limit": 500,
    "offset": 0
  }
}