Skip to content
GET /v1/countries

Countries reporting on a date

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/economiccalendar-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/economiccalendar-api/v1/countries" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/economiccalendar-api/v1/countries", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/economiccalendar-api/v1/countries");
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/economiccalendar-api/v1/countries",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "date": "2026-06-10",
        "countries": [
            {
                "count": 14,
                "country": "United States"
            },
            {
                "count": 5,
                "country": "Germany"
            },
            {
                "count": 4,
                "country": "Japan"
            },
            {
                "count": 3,
                "country": "Canada"
            },
            {
                "count": 3,
                "country": "Australia"
            },
            {
                "count": 3,
                "country": "China"
            },
            {
                "count": 2,
                "country": "South Africa"
            },
            {
                "count": 1,
                "country": "Spain"
            },
            {
                "count": 1,
                "country": "Brazil"
            },
            {
                "count": 1,
                "country": "Euro Zone"
            }
        ],
        "total_events": 37
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:57.175Z",
        "request_id": "10290f19-4cf5-4acc-a094-fc9991f421f5"
    },
    "status": "ok",
    "message": "Countries retrieved successfully",
    "success": true
}