curl --request GET \
--url 'https://api.scanova.io/analytics/languages/' \
--header 'Authorization: YOUR_API_KEY'
[
{ "code": "en", "name": "English" },
{ "code": "hi", "name": "Hindi" }
]
Analytics & Plans
List languages
GET /analytics/languages/
GET
/
analytics
/
languages
/
curl --request GET \
--url 'https://api.scanova.io/analytics/languages/' \
--header 'Authorization: YOUR_API_KEY'
[
{ "code": "en", "name": "English" },
{ "code": "hi", "name": "Hindi" }
]
Lists language codes and names usable as the
The response is a flat array, not paginated — use it to populate a language filter/select in your own UI rather than hardcoding the list.
language 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/languages/' \
--header 'Authorization: YOUR_API_KEY'
[
{ "code": "en", "name": "English" },
{ "code": "hi", "name": "Hindi" }
]
Related
- QR Code analytics — where
languageis used as a filter/breakdown dimension. - List countries — the equivalent lookup for countries.
- 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 languages.
Was this page helpful?