> ## 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.

# Viewing Models

> How to view available models in the Morpheus Inference Marketplace

# How to View Models

<iframe width="560" height="315" src="https://www.youtube.com/embed/7QX4ocNPmP0" title="How to View Available Models Tutorial" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen style={{ width: '100%', borderRadius: '0.5rem' }} />

<br />

The purpose of this document is to provide instructions for how to view the available active models within the Morpheus Inference Marketplace via the "API Reference Page".

## Step 1: API Reference Page

First go to API Reference tab of the website [apidocs.mor.org/api-reference/introduction](https://apidocs.mor.org/api-reference/introduction)

<img src="https://mintcdn.com/morpheus/PGIGcIF3m3NiF2UU/images/models/apireferencehome.png?fit=max&auto=format&n=PGIGcIF3m3NiF2UU&q=85&s=b6e34d357f65627e1e195edacabbe030" alt="API Reference Homepage" style={{ borderRadius: '0.5rem', border: '2px solid rgba(16, 185, 129, 0.3)' }} width="1245" height="375" data-path="images/models/apireferencehome.png" />

## Step 2: View Available Models

Head down to the Models section on the lefthand toolbar and click [List Models](https://apidocs.mor.org/api-reference/models/list). This is how you view the models that are currently available and active within the API. This endpoint uses automated functionality to identify models with active "bids" from providers, signifying that they are actively available for use.

<img src="https://mintcdn.com/morpheus/PGIGcIF3m3NiF2UU/images/models/listmodels.png?fit=max&auto=format&n=PGIGcIF3m3NiF2UU&q=85&s=ced09f0a3a1c0539c44f1373529a86cf" alt="Models endpoint" style={{ borderRadius: '0.5rem', border: '2px solid rgba(16, 185, 129, 0.3)' }} width="1040" height="335" data-path="images/models/listmodels.png" />

## Step 3: Execute Model List

Now you can click the "Try it" button and actually execute the endpoint to see the available models. Enter your API Key and click "Send" to execute the call

<img src="https://mintcdn.com/morpheus/PGIGcIF3m3NiF2UU/images/models/listedmodels.png?fit=max&auto=format&n=PGIGcIF3m3NiF2UU&q=85&s=6f7e70478a173bb1ea6460521171bb96" alt="Models endpoint" style={{ borderRadius: '0.5rem', border: '2px solid rgba(16, 185, 129, 0.3)' }} width="1176" height="582" data-path="images/models/listedmodels.png" />

This creates a curl request to the models endpoint, and sends it

```bash theme={null}
curl -X 'GET' \
  'https://api.mor.org/api/v1/models' \
  -H 'accept: application/json' \
  -H 'Authorization: sk-K95AGZ.47513f0e8db18d689abe8c9907e2d8ae4d43d686a6132d085aac0deaabaaa392' \
  -H 'Content-Type: application/json'
```

Your response will be similar to this:

```json theme={null}
 {
  "object": "list",
  "data": [
   {
      "id": "llama-3.3-70b",
      "blockchainID": "0xa86a6e2f23ccc9be0d2756f471e2319598c07af3c6082a3fff5cfa3b6dda56de",
      "created": 1757993282,
      "tags": [
        "LLM",
        "llama-3.3-70b"
      ],
      "modelType": "LLM"
    },
    {
      "id": "qwen3-coder-480b-a35b-instruct",
      "blockchainID": "0xce43b9525aeb56c2cd1b6c0d981b1614c6edd3cffe06edd4b3d2503fd025772d",
      "created": 1760762538,
      "tags": [
        "LLM",
        "qwen3-coder-480b-a35b-instruct"
      ],
      "modelType": "LLM"
    },
  ]
}
```

## Step 4: View All Models (Including Historical)

There is also an "allmodels" endpoint for purposes of identifying models no longer being hosted, or for historical purposes. That can be found at [All Models](https://apidocs.mor.org/api-reference/models/all-models). You can similarly use the playground to execute this by clicking "Try Now"

<img src="https://mintcdn.com/morpheus/PGIGcIF3m3NiF2UU/images/models/allmodels.png?fit=max&auto=format&n=PGIGcIF3m3NiF2UU&q=85&s=eebfbf9ddaeb91a8411cfd7457fee684" alt="All Models endpoint" style={{ borderRadius: '0.5rem', border: '2px solid rgba(16, 185, 129, 0.3)' }} width="1078" height="374" data-path="images/models/allmodels.png" />

## Understanding the Response

Notice that the models response contains a few pieces of information:

* **ID:** This is the "name" of the model. This can be used directly within the chat/completions endpoint in the "model" section
* **blockchainID:** This is the blockchain ID for the model within the Morpheus Inference Marketplace. This can safely be ignored for the time being for API users.
* **Tags:** These tags are input by providers to help identify key use cases or specific attributes of the model

## Using Models in Chat Completions

When calling a chat/completion request, you can simply use the ID (name) or the blockchain ID, as follows:

```bash theme={null}
curl -X 'POST' \
  'https://api.mor.org/api/v1/chat/completions' \
  -H 'accept: application/json' \
  -H 'Authorization: sk-K95AGZ.47513f0e8db18d689abe8c9907e2d8ae4d43d686a6132d085aac0deaabaaa392' \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "llama-3.3-70b",
  "messages": [
    {
      "role": "system",
      "content": "You are a helpful assistant."
    },
    {
      "role": "user",
      "content": "Hello, how are you?"
    }
  ],
  "stream": false
}'
```

Your response will be similar to this:

```json theme={null}
{
  "id": "chatcmpl-ee90c8c567f07a6426e6373125078f70",
  "object": "chat.completion",
  "created": 1747695418,
  "model": "llama-3.3-70b",
  "choices": [
    {
      "index": 0,
      "message": {
        "role": "assistant",
        "content": "Hello! I'm functioning as intended, thank you. How can I assist you today?"
      },
      "finish_reason": "stop"
    }
  ],
  "usage": {
    "prompt_tokens": 498,
    "completion_tokens": 19,
    "total_tokens": 517
  },
  "system_fingerprint": ""
}
```

## Ready to Use!

Now you can begin using the Morpheus Inference Marketplace! For integrations, use the following information:

<Info>
  **Base URL:** [https://api.mor.org/api/v1](https://api.mor.org/api/v1)

  **API Key:** \[Your API key]
</Info>
