Skip to content
GET /v1/momentum

Economies ranked by the latest month-on-month retail move

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/retailsales-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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",
            
…