DocsAPIUpcoming rounds

List upcoming rounds

Returns a paginated list of the rounds portfolio companies are expected to raise, with the amount each fund plans to put in. These are forward-looking: a round that closes is recorded separately as a funding round with its actual terms.

Defaults to the rounds still being pursued – pass status to see the ones that succeeded, failed or are on hold.

GET
/upcoming-rounds
Query Params

Only return the rounds this company is expected to raise

Example: 42

Only return rounds in this state. Defaults to `active` – the rounds still being pursued.

Example: active

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/upcoming-rounds?company_id=42&status=active" \
  -H "Authorization: Bearer <token>"

Successfully retrieved upcoming rounds

{
  "data": [
    {
      "id": "8",
      "uuid": "V1StGXR8",
      "company_id": "42",
      "status": "active",
      "period": "Q3 2026",
      "round_identifier": "Series B",
      "currency": "EUR",
      "round_size": 10000000,
      "expected_valuation": 100000000,
      "fund_participation": 1500000,
      "prorata_multiple": 1,
      "participating_funds": [
        {
          "fund_id": "1",
          "participation": 500000,
          "is_prorata": true
        }
      ],
      "is_confidential": false,
      "description": "Strong ARR growth, planning to lead with the existing syndicate",
      "created_at": "2026-01-15T10:30:00Z",
      "updated_at": "2026-02-20T09:00:00Z"
    }
  ],
  "pagination": {
    "total": 6,
    "limit": 500,
    "offset": 0
  }
}