Skip to main content
POST
/
beta
/
investment
/
financing-events
/
get
Get financing events
curl --request POST \
  --url https://app.standardmetrics.io/beta/investment/financing-events/get/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "company_ids": [
    "<string>"
  ]
}
'
[
  {
    "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
  • CompanyIDFilter
  • FinancingIDFilter

Options for fetching financing events.

company_ids
string[]
required

Response

200 - application/json

OK

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