POST
/
api
/
v1
/
muni_search
curl --request POST \
  --url https://terrapinfinance.com/api/v1/muni_search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "interest_types": [
    "fixed rate"
  ],
  "issuers": [
    "ABAG FINANCE AUTHORITY FOR NONPROFIT CORPORATIONS"
  ],
  "maturity_date_min": "2030-10-30"
}'
{
  "data": [
    {
      "coupon": 5,
      "interest_type": "fixed rate",
      "is_callable": true,
      "isin": "US00037CUQ13",
      "issuer_name": "ABAG FINANCE AUTHORITY FOR NONPROFIT CORPORATIONS",
      "maturity_date": "2035-11-15",
      "rating": "investment_grade",
      "state": "CA",
      "ticker": "CA AFAGEN 5 11/15/2035"
    }
  ],
  "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

Partial reference data

The response is of type object.