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

# List available models

> Returns the live catalog of available models across all modalities with current pricing. Optionally filter by modality.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/models
openapi: 3.1.0
info:
  title: Rimp API
  version: 1.0.0
  description: >-
    AI generation API across 8 modalities — image, video, voice, music, avatar,
    chat, 3D and upscale. Multi-model side-by-side comparisons, unified billing,
    one API key.
servers:
  - url: https://api.rimp.io
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/models:
    get:
      summary: List available models
      description: >-
        Returns the live catalog of available models across all modalities with
        current pricing. Optionally filter by modality.
      parameters:
        - name: modality
          in: query
          schema:
            type: string
            enum:
              - image
              - video
              - voice
              - music
              - avatar
              - chat
              - 3d
              - upscale
      responses:
        '200':
          description: List of models
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    enum:
                      - list
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Model'
components:
  schemas:
    Model:
      type: object
      properties:
        id:
          type: string
        slug:
          type: string
        provider:
          type: string
        display_name:
          type: string
        modality:
          type: string
          enum:
            - image
            - video
            - voice
            - music
            - avatar
            - chat
            - 3d
            - upscale
        capabilities:
          type: array
          items:
            type: string
        quality_tier:
          type: string
          enum:
            - fast
            - standard
            - pro
        pricing:
          type: object
          properties:
            unit:
              type: string
              enum:
                - second
                - image
                - megapixel
                - character
                - minute
                - song
                - video
                - token
                - model_3d
            unit_cost_usd:
              type: number
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````