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

# List models

> Return the model catalog currently visible through LinkModel in an OpenAI-compatible list envelope.

This endpoint is public and does not require a Bearer API key.

Catalog visibility does not guarantee that every parameter combination has a billable SKU. Open the model's API Reference page for its supported request schema and current pricing.

A `created` value of `0` means the upstream model metadata does not provide a creation timestamp.




## OpenAPI

````yaml /openapi/models/_list.yaml get /models
openapi: 3.0.3
info:
  title: List available models
  version: 1.0.0
  description: Return the model catalog currently visible through LinkModel.
servers:
  - url: https://api.linkmodel.ai/v1
    description: Production
security: []
tags:
  - name: models
paths:
  /models:
    get:
      tags:
        - models
      summary: List models
      description: >
        Return the model catalog currently visible through LinkModel in an
        OpenAI-compatible list envelope.


        This endpoint is public and does not require a Bearer API key.


        Catalog visibility does not guarantee that every parameter combination
        has a billable SKU. Open the model's API Reference page for its
        supported request schema and current pricing.


        A `created` value of `0` means the upstream model metadata does not
        provide a creation timestamp.
      operationId: list-models
      responses:
        '200':
          description: Current visible model list.
          content:
            application/json:
              schema:
                type: object
                required:
                  - object
                  - data
                properties:
                  object:
                    type: string
                    enum:
                      - list
                    example: list
                  data:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - object
                        - created
                        - owned_by
                      properties:
                        id:
                          type: string
                          example: seedream-4.0
                        object:
                          type: string
                          enum:
                            - model
                          example: model
                        created:
                          type: integer
                          format: int64
                          description: >-
                            Unix timestamp. `0` is used when upstream creation
                            metadata is unavailable.
                          example: 0
                        owned_by:
                          type: string
                          example: Bytedance
      security: []

````