Skip to main content
POST
/
beta
/
investment
/
securities
/
get
Get securities
curl --request POST \
  --url https://app.standardmetrics.io/beta/investment/securities/get/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "company_ids": [
    "<string>"
  ]
}
'
[
  {
    "issue_date": "2023-12-25",
    "fund_id": "<string>",
    "company_id": "<string>",
    "investment_amount": {
      "value": "1000000",
      "currency": "USD",
      "converted_value": "1000000",
      "preferred_currency": "USD",
      "fx_rate": "1.0",
      "is_custom_rate": false
    },
    "shares": 123,
    "share_class_id": "<string>",
    "financing_id": "<string>",
    "id": "a2Ne",
    "type": "certificate"
  }
]

Authorizations

Authorization
string
header
required

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

Body

application/json
  • CompanyIDFilter
  • SecurityIDFilter

Options for fetching securities.

company_ids
string[]
required

Response

200 - application/json

OK

  • Certificate
  • Warrant
  • PublicEquity
  • TokenInvestment
  • TokenWarrant
  • TokenConvertible
  • ConvertibleOut

A private equity investment in a company.

issue_date
string<date>
required
fund_id
string
required
company_id
string
required
investment_amount
MoneyAmount · object
required

A monetary amount.

shares
required
share_class_id
string
required
financing_id
string | null
required
id
string | null

The ID of the security. Output only.

Example:

"a2Ne"

type
enum<string>
default:certificate

A holding type.

Available options:
public_equity,
certificate,
warrant,
convertible,
token_investment,
token_warrant,
token_convertible,
other