/v1/momentum
Economies ranked by the latest month-on-month retail move
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/retailsales-api/v1/momentum" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/retailsales-api/v1/momentum", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/retailsales-api/v1/momentum");
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/retailsales-api/v1/momentum",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Economies ranked by the latest month-on-month move in retail sales — who is accelerating or rolling over right now, the part traders react to first. Year-on-year alongside. Growth computed from the OECD's seasonally-adjusted retail-trade-volume index. Monthly, cached a few hours.",
"board": [
{
"mom": 2.59,
"yoy": 20.64,
"code": "TUR",
"name": "Türkiye",
"period": "2026-03",
"is_aggregate": false
},
{
"mom": 1.87,
"yoy": 8.23,
"code": "LTU",
"name": "Lithuania",
"period": "2026-04",
"is_aggregate": false
},
{
"mom": 1.17,
"yoy": 8.99,
"code": "COL",
"name": "Colombia",
"period": "2026-03",
"is_aggregate": false
},
{
"mom": 1,
"yoy": 2.5,
"code": "USA",
"name": "United States",
"period": "2026-03",
"is_aggregate": false
},
{
"mom": 0.51,
"yoy": -0.05,
"code": "JPN",
"name": "Japan",
"period": "2026-03",
"is_aggregate": false
},
{
"mom": 0.51,
"yoy": 5.14,
"code": "ISR",
"name": "Israel",
"period": "2026-02",
"is_aggregate": false
},
{
"mom": 0.48,
"yoy": 2.46,
"code": "BRA",
"name": "Brazil",
"period": "2026-03",
"is_aggregate": false
},
{
"mom": 0.31,
"yoy": 0.73,
"code": "NOR",
"name": "Norway",
"period": "2026-04",
"is_aggregate": false
},
{
"mom": 0.28,
"yoy": 1.89,
"code": "FRA",
"name": "France",
"period": "2026-04",
"is_aggregate": false
},
{
"mom": 0.11,
"yoy": 2.43,
"code": "MEX",
"name": "Mexico",
"period": "2026-03",
"is_aggregate": false
},
{
"mom": 0.1,
"yoy": 1.7,
"code": "CHE",
"name": "Switzerland",
"period": "2026-04",
"is_aggregate": false
},
{
"mom": 0.05,
"yoy": 2.24,
"code": "ZAF",
"name": "South Africa",
…