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 '{
  "as_of_date": "2025-08-11",
  "isins": [
    "US828641ZF03"
  ]
}'
{
  "data": [
    {
      "amount": 10000,
      "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": 103.835,
      "settlement_date": "2025-08-05",
      "trade_datetime": "2025-08-04T18:48:08",
      "trade_type": "customer_bought",
      "ytc_continuous": 4.4593,
      "ytc_money_market": null,
      "ytc_semi_annual": 4.5094,
      "ytm_continuous": 4.92084,
      "ytm_money_market": null,
      "ytm_semi_annual": 4.9819
    }
  ],
  "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.