Skip to main content
POST
/
api
/
v1
/
muni_bonds_in_series
Get all municipal bonds in the same series
curl --request POST \
  --url https://terrapinfinance.com/api/v1/muni_bonds_in_series \
  --header 'Accept: <accept>' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isin": "US794760LQ96"
}
'
{
  "data": [
    {
      "coupon": 4,
      "has_official_statement": true,
      "interest_type": "fixed rate",
      "is_callable": true,
      "isin": "US794760LQ96",
      "issuer_name": "SALINA AIRPORT AUTHORITY (SALINA, KANSAS)",
      "maturity_date": "2043-09-01",
      "rating_group": "investment_grade",
      "state": "KS",
      "ticker": "KS SALAPT 4 09/01/2043"
    },
    {
      "coupon": 4,
      "has_official_statement": true,
      "interest_type": "fixed rate",
      "is_callable": true,
      "isin": "US794760LM82",
      "issuer_name": "SALINA AIRPORT AUTHORITY (SALINA, KANSAS)",
      "maturity_date": "2040-09-01",
      "rating_group": "investment_grade",
      "state": "KS",
      "ticker": "KS SALAPT 4 09/01/2040"
    }
  ],
  "total": 2
}

Authorizations

Authorization
string
header
required

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

Headers

Accept
enum<string>
default:application/json
required

Specify text/csv if you would like to receive a CSV file.

Available options:
application/json,
text/csv

Body

application/json
isin
string
required

International Securities Identification Number (ISIN), unique 12-character code for the security.

Required string length: 12

Response

Municipal bonds in the same series

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.