Skip to main content
List Available Devices
curl --request GET \
  --url https://api.noqa.ai/v1/devices/ \
  --header 'x-api-key: <api-key>'
[
  {
    "model": "<string>",
    "os_version": "<string>",
    "platform": "ios"
  }
]

Authorizations

x-api-key
string
header
required

API Key for authentication. Get your API key from NOQA dashboard.

Headers

x-api-key
string | null

API Key for authentication

Query Parameters

platform
enum<string> | null

Filter devices by platform: "ios" or "android". If not specified, returns all devices. Platform enumeration

Available options:
ios,
android

Response

Successful Response

model
string
required

Device model name

Example:

"iPhone 15 Pro"

os_version
string
required

Operating system version

Example:

"17.6.1"

platform
enum<string>
required

Platform

Available options:
ios,
android
Examples:

"ios"

"android"