> ## 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 Runs

> List test runs for app (Public API with API Key authentication)



## OpenAPI

````yaml /openapi.json get /v1/runs/
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/runs/:
    get:
      tags:
        - Runs
      summary: List Runs
      description: List test runs for app (Public API with API Key authentication)
      operationId: list_runs_v1_runs__get
      parameters:
        - name: app_id
          in: query
          required: true
          schema:
            type: string
            format: uuid
            description: Application ID
            title: App Id
          description: Application ID
        - name: skip
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of records to skip
            default: 0
            title: Skip
          description: Number of records to skip
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Maximum number of records
            default: 50
            title: Limit
          description: Maximum number of records
        - 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/RunListResponse-Output'
                title: Response List Runs V1 Runs  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RunListResponse-Output:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Unique identifier of the test run
          examples:
            - 550e8400-e29b-41d4-a716-446655440000
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Timestamp when the run was created
        build:
          anyOf:
            - $ref: >-
                #/components/schemas/src__routers__public__v1__runs__schemas__BuildResponse
            - type: 'null'
          description: Build information
        device:
          anyOf:
            - $ref: '#/components/schemas/DeviceConfig'
            - type: 'null'
          description: Device configuration used for the run
        status:
          $ref: '#/components/schemas/RunStatus'
          description: Overall run status
          examples:
            - running
            - completed
            - cancelled
        test_count:
          type: integer
          title: Test Count
          description: Total number of tests in the run
          examples:
            - 10
        statuses:
          additionalProperties:
            type: integer
          propertyNames:
            $ref: '#/components/schemas/TestStatus'
          type: object
          title: Statuses
          description: Count of tests by status
          examples:
            - failed: 2
              passed: 3
              queued: 5
      type: object
      required:
        - id
        - created_at
        - status
        - test_count
        - statuses
      title: RunListResponse
      description: Response model for test run in list (Public API)
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    src__routers__public__v1__runs__schemas__BuildResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Build ID
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Build name
        version:
          type: string
          title: Version
          description: Build version
      type: object
      required:
        - id
        - version
      title: BuildResponse
      description: Build summary for run response
    DeviceConfig:
      properties:
        model:
          type: string
          title: Model
        os_version:
          type: string
          title: Os Version
        platform:
          anyOf:
            - $ref: '#/components/schemas/Platform'
            - type: 'null'
        locale:
          type: string
          title: Locale
          default: en_US
      type: object
      required:
        - model
        - os_version
      title: DeviceConfig
      description: Device configuration for test execution (cloud-agnostic)
    RunStatus:
      type: string
      enum:
        - queued
        - running
        - passed
        - failed
        - cancelled
      title: RunStatus
      description: Run status enumeration
    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
    Platform:
      type: string
      enum:
        - ios
        - android
      title: Platform
      description: Platform enumeration
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication. Get your API key from NOQA dashboard.

````