/v1/meta
Service metadata
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/bondperformance-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bondperformance-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bondperformance-api/v1/meta");
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/bondperformance-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "board category= filters by category. bond= takes a key/alias/ETF (long_treasury, TLT, high_yield; see /v1/bonds). Changes are over 1, ~5 and ~21 trading days; price moves inverse to yield. Read fresh per call, nothing cached.",
"source": "Yahoo Finance daily fixed-income ETF closes (1y range), live",
"service": "bondperformance-api",
"endpoints": {
"GET /v1/bond": "One fixed-income ETF's performance card (bond=long_treasury).",
"GET /v1/meta": "This document.",
"GET /v1/board": "The fixed-income complex ranked by daily change with monthly leaders (category=treasury optional).",
"GET /v1/bonds": "The supported fixed-income ETFs and categories."
},
"categories": [
"treasury",
"credit",
"inflation",
"emerging",
"aggregate",
"municipal"
],
"description": "Bond / fixed-income performance board — what is moving across the bond market by duration and credit, live from Yahoo Finance via the major fixed-income ETFs (no key, nothing stored). board returns the whole complex ranked by daily change (gainers and losers) with monthly leaders and a category filter. bond returns one ETF's performance card (day/week/month change, 52-week range, category, rate sensitivity). bonds lists what is covered. The fixed-income performance / bond-board cut — distinct from the government-bond-yield, yield-curve, central-bank-rate and bond-pricing-math APIs. A bond ETF's price moves inverse to its yield.",
"bonds_scanned": 16,
"universe_size": 16,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T10:35:12.629Z",
"request_id": "c0a230df-e434-471f-af59-bc70e91c12fa"
},
"status": "ok",
"message": "Meta",
"success": true
}