> ## 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 All Models

> Get a list of all available models

Get a list of all available models.

Response is in OpenAI API format with selected fields from the blockchain data. Returns all non-deleted models, including both active and inactive models. This differs from `/api/v1/models` which 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 all 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>

<Info>
  **All Models vs Active Models**:

  * `/api/v1/models` - Returns only active models with available providers (recommended for most use cases)
  * `/api/v1/models/allmodels` - Returns all non-deleted models regardless of status
</Info>

<Tip>
  Use this endpoint to discover all models in the marketplace, including those that may be temporarily unavailable or in testing.
</Tip>

<Note>
  Models marked as deleted are excluded from the response. Only models that exist on the blockchain and haven't been soft-deleted are returned.
</Note>
