POST
/
api
/
v1
/
bond_search
curl --request POST \
  --url https://terrapinfinance.com/api/v1/bond_search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "countries": [
    "Italy"
  ],
  "coupon_max": 4,
  "coupon_min": 3,
  "maturity_date_max": "2028-11-01",
  "maturity_date_min": "2028-10-22"
}'
{
  "data": [
    {
      "coupon": 3.4,
      "currency": "EUR",
      "isin": "IT0004423494",
      "issuer_name": "BANCO BPM SPA",
      "maturity_date": "2028-10-30",
      "ticker": "BPIM 3.4 10/30/28"
    },
    {
      "coupon": 3.75,
      "currency": "EUR",
      "isin": "IT0005571952",
      "issuer_name": "BPER BANCA SPA",
      "maturity_date": "2028-10-22",
      "ticker": "BPEIM 3.75 10/22/28 EMTN"
    }
  ],
  "total": 2
}

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

Partial reference data

The response is of type object.