curl --request GET \
--url 'https://api.scanova.io/analytics/devices/' \
--header 'Authorization: YOUR_API_KEY'
["iOS", "Android", "Windows", "Mac OS X", "Linux"]
Analytics & Plans
List device types
GET /analytics/devices/
GET
/
analytics
/
devices
/
curl --request GET \
--url 'https://api.scanova.io/analytics/devices/' \
--header 'Authorization: YOUR_API_KEY'
["iOS", "Android", "Windows", "Mac OS X", "Linux"]
Lists device/OS family names usable as the
The response is a flat array of strings, not paginated — use it to populate a device filter/select in your own UI rather than hardcoding the list.
device filter value on QR Code analytics and related endpoints.
Requires only account authentication — this is a near-static reference list, not account-specific data.
curl --request GET \
--url 'https://api.scanova.io/analytics/devices/' \
--header 'Authorization: YOUR_API_KEY'
["iOS", "Android", "Windows", "Mac OS X", "Linux"]
Related
- QR Code analytics — where
deviceis used as a filter/breakdown dimension. - List countries — the equivalent lookup for countries.
- List languages — the equivalent lookup for languages.
- 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 device types.
Was this page helpful?