Skip to main content
POST
/
beta
/
investment
/
financing-rounds
/
add
Add financing rounds
curl --request POST \
  --url https://app.standardmetrics.io/beta/investment/financing-rounds/add/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "financing_rounds": [
    {
      "company_id": "<string>",
      "name": "<string>",
      "pre_money_valuation": {
        "currency": "USD",
        "value": "20000000"
      },
      "round_size": {
        "currency": "USD",
        "value": "5000000"
      },
      "fully_diluted_shares": "1000000",
      "closing_date": "2023-12-25",
      "co_investors": [
        {
          "name": "<string>",
          "is_lead": false
        }
      ],
      "id": "a2Ne",
      "is_crypto": false
    }
  ]
}
'
[
  {
    "company_id": "<string>",
    "name": "<string>",
    "pre_money_valuation": {
      "currency": "USD",
      "value": "20000000"
    },
    "round_size": {
      "currency": "USD",
      "value": "5000000"
    },
    "fully_diluted_shares": "1000000",
    "closing_date": "2023-12-25",
    "co_investors": [
      {
        "name": "<string>",
        "is_lead": false
      }
    ],
    "id": "a2Ne",
    "is_crypto": false
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

A list of financing rounds to add.

financing_rounds
Financing · object[]
required

Response

201 - application/json

Created

company_id
string
required
name
string
required
pre_money_valuation
MoneyAmount · object
required

A monetary amount.

Example:
{ "currency": "USD", "value": "20000000" }
round_size
MoneyAmount · object
required

A monetary amount.

Example:
{ "currency": "USD", "value": "5000000" }
fully_diluted_shares
required
Example:

"1000000"

closing_date
string<date>
required
co_investors
CoInvestor · object[]
required
id
string | null

The ID of the financing. Output only.

Example:

"a2Ne"

is_crypto
boolean
default:false