curl --request GET \
--url 'https://api.scanova.io/analytics/countries/' \
--header 'Authorization: YOUR_API_KEY'
[
{ "code": "US", "name": "United States" },
{ "code": "IN", "name": "India" }
]
Analytics & Plans
List countries
GET /analytics/countries/
GET
/
analytics
/
countries
/
curl --request GET \
--url 'https://api.scanova.io/analytics/countries/' \
--header 'Authorization: YOUR_API_KEY'
[
{ "code": "US", "name": "United States" },
{ "code": "IN", "name": "India" }
]
Lists country codes and names usable as the
The response is a flat array, not paginated, covering the full ISO country list — use it to populate a country filter/select in your own UI rather than hardcoding the list.
country filter value on QR Code analytics and related endpoints.
Requires only account authentication — this is a static reference list, not account-specific data.
curl --request GET \
--url 'https://api.scanova.io/analytics/countries/' \
--header 'Authorization: YOUR_API_KEY'
[
{ "code": "US", "name": "United States" },
{ "code": "IN", "name": "India" }
]
Related
- QR Code analytics — where
countryis used as a filter/breakdown dimension. - List languages — the equivalent lookup for languages.
- List device types — the equivalent lookup for device/OS families.
- Management API overview — the auth scheme and quota architecture this endpoint is part of.
Authorizations
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Response
200 - application/json
List of countries.
Was this page helpful?