POST
/
api
/
v1
/
bond_cashflows
curl --request POST \
  --url https://terrapinfinance.com/api/v1/bond_cashflows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "isins": [
    "GB00BSGJXG32"
  ]
}'
{
  "data": [
    {
      "amount": 100,
      "date": "2025-02-10",
      "isin": "GB00BSGJXG32",
      "type": "principal"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Cashflow data

The response is of type object.