POST
/
api
/
v1
/
muni_pricing_latest
Municipal latest pricing data
curl --request POST \
  --url https://terrapinfinance.com/api/v1/muni_pricing_latest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "isins": [
    "US828641ZF03"
  ]
}'
{
  "data": [
    {
      "amount": 300000,
      "brokers_broker_trade_type": null,
      "is_alt_trading_system": false,
      "is_list_offering_price": false,
      "is_non_transaction_compensation": false,
      "is_weighted_avg_price_trade": false,
      "is_when_issued_trade": false,
      "isin": "US828641ZF03",
      "price": 102.856,
      "settlement_date": "2025-07-21",
      "trade_datetime": "2025-07-18T14:34:04",
      "trade_type": "customer_bought",
      "ytc_continuous": 4.6411,
      "ytc_money_market": null,
      "ytc_semi_annual": 4.6954,
      "ytm_continuous": 4.98474,
      "ytm_money_market": null,
      "ytm_semi_annual": 5.0474
    }
  ],
  "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

Latest pricing data

The response is of type object.