DocsAPIFunding rounds

Add funding round

Adds a funding round to a company. pre_money, round_size and post_money are derived from the share price and share counts and cannot be set directly.

POST
/funding-rounds
Body

Example: 42

Example: 2023-06-15

Example: Series A

Example: priced

Example: false

Example: false

Example: 2023-07-01

Example: pari-passu

Example: Series A

Example: EUR

Example: 10.5

Example: 190476

Example: 1190476

Example: 100000

Example: 2000000

Request Body

application/jsonOptional
company_idRequiredstring

Company the round belongs to (required)

Pattern: "^\\d+$"
dateRequiredstring

Signing date of the round – when the investment documents were signed

Pattern: "^\\d{4}-\\d{2}-\\d{2}$"
round_identifierRequiredstring

Name of the round

Minimum length: 1
round_typestring

Whether the round sets a share price

Value in: "priced" | "unpriced"
is_internal_roundboolean

Whether the round was led by existing investors only

is_pending_closeboolean

Whether the round is signed but not yet closed

closed_onstring

Date the new shares become outstanding. Leave unset to use the signing date.

Pattern: "^\\d{4}-\\d{2}-\\d{2}$"
liquidation_preferencestring

Liquidation preference

Value in: "stacked" | "pari-passu" | "none"
share_classstring

Share class issued in the round

currencystring

ISO 4217 currency of the share price

Minimum length: 3Maximum length: 3
share_pricenumber

Price per share

shares_issuedinteger

New shares issued in the round

shares_outstandinginteger

Shares outstanding after the round, fully diluted

esopinteger

Shares reserved for the option pool

round_size_overridenumber

Manual round size, for unpriced rounds

fieldsobject

Custom fields

Credentials

Bearer
curl -X POST "https://api.fundra.com/v1/funding-rounds" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "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,
    "fields": {
      "property1": null,
      "property2": null
    }
  }'

Funding round created

{
  "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"
  }
}