Get current and historical US Treasury yields for all maturities. Access rates for Treasury bills (1-month to 1-year), notes (2-10 years), bonds (20-30 years), TIPS, and floating rate notes.
{
"status": "ok",
"error": null,
"data": {
"date": "2024-02-01",
"bills": 5.24,
"notes": 4.35,
"bonds": 4.67,
"tips": 2.15,
"frn": 5.31,
"changes": {
"bills": {
"change1d": 0.02,
"direction": "up"
},
"notes": {
"change1d": -0.03,
"direction": "down"
},
"bonds": {
"change1d": 0.01,
"direction": "up"
},
"tips": {
"change1d": 0,
"direction": "unchanged"
},
"frn": {
"change1d": 0.02,
"direction": "up"
}
},
"previousDate": "2024-01-31"
}
}






Get current and historical US Treasury yields for all maturities. Access rates for Treasury bills (1-month to 1-year), notes (2-10 years), bonds (20-30 years), TIPS, and floating rate notes.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/treasuryyields?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ date, bills, notes, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseFetch all Treasury yields in a single API call and plot them by maturity. Compare current curves to historical dates to identify trends.
Calculate key spreads like 10Y-2Y and 10Y-3M automatically. Monitor for inversions and track spread changes over time.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/treasuryyields?date=2025-06&type=10yr", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog