POST
/
api
/
v1
/
muni_pricing_latest
curl --request POST \
  --url https://terrapinfinance.com/api/v1/muni_pricing_latest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "isins": [
    "US005824LP01"
  ]
}'
{
  "data": [
    {
      "amount": 100000,
      "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": "US005824LP01",
      "price": 99.21,
      "settlement_date": "2024-07-19",
      "trade_datetime": "2024-07-17T14:30:00Z",
      "trade_type": "customer_bought",
      "ytc_continuous": null,
      "ytc_money_market": null,
      "ytc_semi_annual": null,
      "ytm_continuous": 3.60638,
      "ytm_money_market": 3.61987,
      "ytm_semi_annual": null
    }
  ],
  "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.