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

# List models

> List the models available to your workspace. A model not in this list returns 404 when called.



## OpenAPI

````yaml /openapi-inference.json get /models
openapi: 3.1.0
info:
  title: Omnia Inference API
  description: >-
    OpenAI-compatible inference endpoints: chat completions, embeddings, rerank,
    and the Responses API. Authenticated with a workspace API key
    (sk_sovereign_...).
  version: 1.0.0
servers:
  - url: https://gateway.omnia-voice.com/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /models:
    get:
      tags:
        - Models
      summary: List models
      description: >-
        List the models available to your workspace. A model not in this list
        returns 404 when called.
      operationId: listModels
      responses:
        '200':
          description: A list of models.
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    example: list
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: Qwen/Qwen3-32B
                        object:
                          type: string
                          example: model
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Missing, malformed, or revoked API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              message: Invalid API key
              type: invalid_request_error
              code: invalid_api_key
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
            type:
              type: string
            code:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your workspace API key, e.g. sk_sovereign_..., sent as Authorization:
        Bearer <key>.

````