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

# List Models

> Get a list of active AI models

Get a list of active models available in the Morpheus marketplace.

Response is in OpenAI API format with selected fields from the blockchain data. Only returns active models with available providers.

### Headers

<ParamField header="Authorization" type="string" required>
  API key in format: `Bearer sk-xxxxxx`
</ParamField>

### Response

<ResponseField name="object" type="string">
  Always "list"
</ResponseField>

<ResponseField name="data" type="array">
  Array of model objects

  <Expandable title="Model Object">
    <ResponseField name="id" type="string">
      Unique model identifier (blockchain hex address)
    </ResponseField>

    <ResponseField name="object" type="string">
      Always "model"
    </ResponseField>

    <ResponseField name="created" type="integer">
      Unix timestamp of model creation
    </ResponseField>

    <ResponseField name="owned_by" type="string">
      Model owner/organization
    </ResponseField>
  </Expandable>
</ResponseField>

<Tip>
  Use the model `id` (blockchain address) when creating sessions or making chat completion requests.
</Tip>
