> ## Documentation Index
> Fetch the complete documentation index at: https://docs.noqa.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Available Devices

> Get list of available devices for testing (Public API with API Key authentication)



## OpenAPI

````yaml /openapi.json get /v1/devices/
openapi: 3.1.0
info:
  title: NOQA Public API
  description: >-
    Public API for mobile app testing automation. Authenticate using API Key in
    x-api-key header.
  version: 1.0.0
servers: []
security:
  - apiKeyAuth: []
paths:
  /v1/devices/:
    get:
      tags:
        - Devices
      summary: List Available Devices
      description: >-
        Get list of available devices for testing (Public API with API Key
        authentication)
      operationId: list_available_devices_v1_devices__get
      parameters:
        - name: platform
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/Platform'
              - type: 'null'
            description: >-
              Filter devices by platform: "ios" or "android". If not specified,
              returns all devices.
            title: Platform
          description: >-
            Filter devices by platform: "ios" or "android". If not specified,
            returns all devices.
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: API Key for authentication
            title: X-Api-Key
          description: API Key for authentication
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeviceResponse'
                title: Response List Available Devices V1 Devices  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Platform:
      type: string
      enum:
        - ios
        - android
      title: Platform
      description: Platform enumeration
    DeviceResponse:
      properties:
        model:
          type: string
          title: Model
          description: Device model name
          examples:
            - iPhone 15 Pro
        os_version:
          type: string
          title: Os Version
          description: Operating system version
          examples:
            - 17.6.1
        platform:
          $ref: '#/components/schemas/Platform'
          description: Platform
          examples:
            - ios
            - android
      type: object
      required:
        - model
        - os_version
        - platform
      title: DeviceResponse
      description: Public device response with limited fields
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication. Get your API key from NOQA dashboard.

````