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

# Retrieve Model List

Retrieve the list of models currently available for the LLM API, along with basic information for each model. This endpoint is compatible with the OpenAI API.

## Request Headers

<ParamField header="Content-Type" type="string" required={true}>
  Enum value: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer authentication format: Bearer \{\{API Key}}.
</ParamField>

## Response Information

<ResponseField name="data" type="object[]" required={true}>
  An array of model objects containing the following properties:

  <Expandable title="Model Object Properties" defaultOpen={true}>
    <ResponseField name="id" type="string" required={true}>
      Model identifier, which can be referenced in API endpoints.
    </ResponseField>

    <ResponseField name="created" type="integer" required={true}>
      Unix timestamp (in seconds) when the model was created.
    </ResponseField>

    <ResponseField name="object" type="string" required={true}>
      Object type, always "model".
    </ResponseField>

    <ResponseField name="input_token_price_per_m" type="integer" required={true}>
      Price per million input tokens.
    </ResponseField>

    <ResponseField name="output_token_price_per_m" type="integer" required={true}>
      Price per million output tokens.
    </ResponseField>

    <ResponseField name="title" type="string" required={true}>
      The model title.
    </ResponseField>

    <ResponseField name="description" type="string" required={true}>
      The model description.
    </ResponseField>

    <ResponseField name="context_size" type="integer" required={true}>
      The maximum context size of the model.
    </ResponseField>
  </Expandable>
</ResponseField>
