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

# Retrieve a model

> Returns details about a specific model.



## OpenAPI

````yaml /openapi.json get /v1/models/{model}
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/{model}:
    get:
      tags:
        - Models
      summary: Retrieve a model
      description: Returns details about a specific model.
      operationId: getModel
      parameters:
        - name: model
          in: path
          required: true
          schema:
            type: string
          description: The model identifier.
      responses:
        '200':
          description: Model details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelObject'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - apiKeyAuth: []
components:
  schemas:
    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
    ErrorResponse:
      type: object
      required:
        - type
        - error
      properties:
        type:
          type: string
          enum:
            - error
        error:
          type: object
          required:
            - message
            - type
            - code
            - param
            - request_id
            - guidance
            - action_url
            - retryable
          properties:
            message:
              type: string
            type:
              type: string
            code:
              type: string
              enum:
                - invalid_request
                - authentication_error
                - invalid_api_key
                - expired_api_key
                - revoked_api_key
                - permission_denied
                - insufficient_balance
                - spend_limit_exceeded
                - rate_limit_exceeded
                - context_length_exceeded
                - unsupported_input
                - provider_unavailable
                - provider_timeout
                - search_error
                - billing_error
                - idempotency_conflict
                - not_implemented
                - internal_error
            param:
              type: string
              nullable: true
            request_id:
              type: string
            guidance:
              type: string
            action_url:
              type: string
              format: uri
              nullable: true
            retryable:
              type: boolean
            retry_after_seconds:
              type: integer
              minimum: 0
  responses:
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: af_live_... or af_test_...
      description: AtlasFlux API key. Get yours from the Developer Dashboard.

````

## Related topics

- [Models](/concepts/models.md)
- [List available models](/api-reference/models/list-available-models.md)
- [API Reference](/api-reference/overview.md)
- [Overview](/concepts/overview.md)
- [Errors Reference](/api-reference/errors.md)
