Skip to main content
POST
/
api
/
v1
/
convert_to_isin
Convert CUSIPs to ISINs
curl --request POST \
  --url https://terrapinfinance.com/api/v1/convert_to_isin \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identifiers": [
    "037833100",
    "594918104"
  ]
}
'
{
  "data": [
    {
      "input": "037833100",
      "isin": "US0378331005"
    },
    {
      "input": "594918104",
      "isin": "US5949181045"
    }
  ],
  "total": 2
}

Authorizations

Authorization
string
header
required

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

Body

application/json
identifiers
string[]
required

List of 9-character US CUSIPs to convert to ISINs.

Minimum array length: 1

Response

Resolved ISINs per input identifier

data
object[]
required

List of response data objects, often capped to 1000.

total
integer
required

Total number of results in the database that match the query filters.