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

# List available models

> Returns the list of models available through the AtlasFlux API.



## OpenAPI

````yaml /openapi.json get /v1/models
openapi: 3.0.3
info:
  title: AtlasFlux API
  description: >-
    Unified AI model routing API with intelligent model selection, web search,
    reasoning, and prepaid MYR billing.
  version: 1.0.0
  contact:
    name: Rainspeed Labs
    url: https://atlasflux.my
  license:
    name: Proprietary
servers:
  - url: https://api.atlasflux.my
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/models:
    get:
      tags:
        - Models
      summary: List available models
      description: Returns the list of models available through the AtlasFlux API.
      operationId: listModels
      responses:
        '200':
          description: List of models.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelList'
      security:
        - apiKeyAuth: []
components:
  schemas:
    ModelList:
      type: object
      properties:
        object:
          type: string
          example: list
        data:
          type: array
          items:
            $ref: '#/components/schemas/ModelObject'
    ModelObject:
      type: object
      properties:
        id:
          type: string
          example: atlasflux/nenas-flash
        object:
          type: string
          example: model
        owned_by:
          type: string
          example: atlasflux
        context_window:
          type: integer
          example: 1000000
        max_output_tokens:
          type: integer
          example: 32000
        capabilities:
          type: array
          items:
            type: string
          example:
            - text
            - vision
            - reasoning
            - web_search
            - streaming
            - tools
            - structured_output
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: af_live_... or af_test_...
      description: AtlasFlux API key. Get yours from the Developer Dashboard.

````

## Related topics

- [API Reference](/api-reference/overview.md)
- [Models](/concepts/models.md)
- [List API keys](/api-reference/dashboard-—-api-keys/list-api-keys.md)
- [Create a chat completion](/api-reference/chat-completions/create-a-chat-completion.md)
- [AtlasFlux API](/introduction.md)
