/v1/rates
All latest reference rates
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/usrates-api/v1/rates" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/usrates-api/v1/rates", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/usrates-api/v1/rates");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/usrates-api/v1/rates",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"as_of": "2026-06-08",
"count": 6,
"rates": [
{
"date": "2026-06-08",
"name": "SOFR Averages & Index",
"type": "SOFRAI",
"rate_pct": null,
"volume_billions": null
},
{
"date": "2026-06-05",
"name": "Effective Federal Funds Rate",
"type": "EFFR",
"rate_pct": 3.62,
"percentiles": {
"p1": 3.6,
"p25": 3.62,
"p75": 3.63,
"p99": 3.69
},
"fed_target_band": {
"low": 3.5,
"high": 3.75
},
"volume_billions": 117
},
{
"date": "2026-06-05",
"name": "Overnight Bank Funding Rate",
"type": "OBFR",
"rate_pct": 3.62,
"percentiles": {
"p1": 3.5,
"p25": 3.62,
"p75": 3.63,
"p99": 3.68
},
"volume_billions": 254
},
{
"date": "2026-06-05",
"name": "Tri-Party General Collateral Rate",
"type": "TGCR",
"rate_pct": 3.61,
"percentiles": {
"p1": 3.55,
"p25": 3.6,
"p75": 3.61,
"p99": 3.65
},
"volume_billions": 1265
},
{
"date": "2026-06-05",
"name": "Broad General Collateral Rate",
"type": "BGCR",
"rate_pct": 3.61,
"percentiles": {
"p1": 3.55,
"p25": 3.6,
"p75": 3.61,
"p99": 3.67
},
"volume_billions": 1304
},
{
"date": "2026-06-05",
"name": "Secured Overnight Financing Rate",
"type": "SOFR",
"rate_pct": 3.63,
"percentiles": {
"p1": 3.58,
"p25": 3.61,
"p75": 3.68,
"p99": 3.71
},
"volume_billions": 3131
}
]
},
"meta": {
"timestamp": "2026-06-09T11:39:26.437Z",
"request_id": "ad1dc0c4-8d97-4c79-858c-fc7946891d38"
},
"status": "ok",
"message": "Rates retrieved successfully",
"success": true
}