Current ratei
4.45%
Interest Rates history and the latest observation are available via a free, keyless REST endpoint. No sign-up; no rate-limit header needed.
https://api.usepancake.com/v1/public/macro/10y-treasurycurl https://api.usepancake.com/v1/public/macro/10y-treasuryconst res = await fetch('https://api.usepancake.com/v1/public/macro/10y-treasury');
const data = await res.json();
// data.slug, data.latest.value, data.history[0].date …
console.log(data.latest);import requests
data = requests.get('https://api.usepancake.com/v1/public/macro/10y-treasury').json()
# data['slug'], data['latest']['value'], data['history'][0]['date'] …
print(data['latest']){
"slug": "10y-treasury",
"name": "10-Year Treasury Yield",
"unit": "percent",
"latest": {
"value": 4.41,
"asOf": "2026-06-12"
},
"history": [
{
"date": "2026-06-12",
"value": 4.41
},
{
"date": "2026-06-11",
"value": 4.38
},
{
"date": "2026-06-10",
"value": 4.35
}
]
}GET https://api.usepancake.com/v1/public/macroInterest Rates rarely trades alone. These rooms share legs or risk drivers with this one.
Turn this page into evidence. Ask your agent to backtest a interest rates-linked strategy on Pancake; the result comes back reproducible.