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

# Öffentliche Modelle auflisten

> Gibt den für den aktuellen API-Key sichtbaren öffentlichen Modellkatalog von APIAny.AI zurück.



## OpenAPI

````yaml /de/openapi.json get /v1/models
openapi: 3.1.0
info:
  title: APIAny.AI Öffentliche API
  version: 1.0.0
  description: >-
    Öffentliche API von APIAny.AI für Modellaggregation, asynchrone
    Medienaufgaben, Chat-Generierung, Guthabenabfrage und Aufgabenabfrage.
servers:
  - url: https://apiany.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Models
    description: Öffentlicher Modellkatalog.
  - name: Chat
    description: Endpunkte für Textgenerierung und chatkompatible Funktionen.
  - name: Images
    description: Endpunkte für Bildgenerierung und Bildbearbeitung.
  - name: Videos
    description: Endpunkte für Videogenerierung.
  - name: Moderation
    description: Image safety and moderation endpoints.
  - name: Tasks
    description: Abfrage asynchroner Aufgaben.
  - name: Account
    description: Konto- und Guthabenabfrage.
  - name: Free APIs
    description: Free utility APIs protected by API key rate limits.
paths:
  /v1/models:
    get:
      tags:
        - Models
      summary: Öffentliche Modelle auflisten
      description: >-
        Gibt den für den aktuellen API-Key sichtbaren öffentlichen Modellkatalog
        von APIAny.AI zurück.
      operationId: listModels
      responses:
        '200':
          description: Modellliste.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelListResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    ModelListResponse:
      type: object
      properties:
        object:
          type: string
          example: list
        data:
          type: array
          items:
            $ref: '#/components/schemas/Model'
      required:
        - data
    Model:
      type: object
      properties:
        id:
          type: string
          example: nano-banana
        object:
          type: string
          example: model
        type:
          type: string
          example: image
        owned_by:
          type: string
          example: APIAny.AI
        display_name:
          type: string
          example: Nano Banana
        status:
          type: string
          example: active
        pricing:
          type: object
          additionalProperties: true
        parameters:
          type: object
          additionalProperties: true
      required:
        - id
        - object
        - type
        - display_name
        - status
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
              enum:
                - invalid_request
                - auth_error
                - rate_limit
                - insufficient_quota
                - content_policy
                - timeout
                - network_error
                - service_error
                - billable_error
                - unknown
            message:
              type: string
            param:
              type:
                - string
                - 'null'
            code:
              type:
                - string
                - 'null'
          required:
            - type
            - message
      required:
        - error
  responses:
    Unauthorized:
      description: Fehlender oder ungültiger API-Key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````