/v1/meta
API metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/bls-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bls-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bls-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/bls-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"api": "US Bureau of Labor Statistics (BLS) API",
"notes": "Live data from BLS; the BLS public API returns roughly the last three years per series. Heavily cached (6h) because BLS rate-limits unregistered use; month-on-month and year-on-year computed from the series.",
"source": "US Bureau of Labor Statistics — public Time Series API v1 (api.bls.gov)",
"country": "United States",
"endpoints": [
"/v1/cpi",
"/v1/unemployment",
"/v1/indicators",
"/v1/series",
"/v1/meta"
],
"indicators": [
{
"key": "cpi",
"label": "CPI-U, all items (1982-84=100, NSA)",
"series_id": "CUUR0000SA0"
},
{
"key": "core_cpi",
"label": "Core CPI-U (all items less food & energy)",
"series_id": "CUUR0000SA0L1E"
},
{
"key": "unemployment_rate",
"label": "Unemployment rate (16+, seasonally adjusted)",
"series_id": "LNS14000000"
},
{
"key": "ppi_final_demand",
"label": "PPI, final demand",
"series_id": "WPUFD4"
},
{
"key": "avg_hourly_earnings",
"label": "Average hourly earnings, total private (USD)",
"series_id": "CES0500000003"
},
{
"key": "nonfarm_employment",
"label": "Total nonfarm employment (thousands)",
"series_id": "CES0000000001"
}
],
"documentation": "https://api.oanor.com/bls-api"
},
"meta": {
"timestamp": "2026-06-15T20:40:39.355Z",
"request_id": "0dc7c92e-6433-4df3-bc7d-fd5e92d7f305"
},
"status": "ok",
"message": "Meta",
"success": true
}