curl --request POST \
--url https://terrapinfinance.com/api/v1/muni_pricing_daily_history \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"trade_date": "2025-07-01"
}'
{
"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": "US38656NAD84",
"price": 75.391,
"settlement_date": "2025-07-01",
"trade_datetime": "2025-07-01T00:00:00Z",
"trade_type": "customer_bought",
"ytc_continuous": 9.3783,
"ytc_money_market": null,
"ytc_semi_annual": 9.6017,
"ytm_continuous": 5.77235,
"ytm_money_market": null,
"ytm_semi_annual": 5.8565
},
{
"amount": 500000,
"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": "US05355ABT34",
"price": 94.947,
"settlement_date": "2025-07-01",
"trade_datetime": "2025-07-01T00:00:00Z",
"trade_type": "customer_bought",
"ytc_continuous": 6.2244,
"ytc_money_market": null,
"ytc_semi_annual": 6.3223,
"ytm_continuous": 5.782,
"ytm_money_market": null,
"ytm_semi_annual": 5.8664
}
],
"total": 2
}
Get historical US municipal bond pricing data for all ISINs at a given day.
curl --request POST \
--url https://terrapinfinance.com/api/v1/muni_pricing_daily_history \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"trade_date": "2025-07-01"
}'
{
"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": "US38656NAD84",
"price": 75.391,
"settlement_date": "2025-07-01",
"trade_datetime": "2025-07-01T00:00:00Z",
"trade_type": "customer_bought",
"ytc_continuous": 9.3783,
"ytc_money_market": null,
"ytc_semi_annual": 9.6017,
"ytm_continuous": 5.77235,
"ytm_money_market": null,
"ytm_semi_annual": 5.8565
},
{
"amount": 500000,
"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": "US05355ABT34",
"price": 94.947,
"settlement_date": "2025-07-01",
"trade_datetime": "2025-07-01T00:00:00Z",
"trade_type": "customer_bought",
"ytc_continuous": 6.2244,
"ytc_money_market": null,
"ytc_semi_annual": 6.3223,
"ytm_continuous": 5.782,
"ytm_money_market": null,
"ytm_semi_annual": 5.8664
}
],
"total": 2
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Pricing history data
The response is of type object
.