Skip to main content
GET
/
api
/
v1
/
models
List Models
curl --request GET \
  --url https://api.mor.org/api/v1/models \
  --header 'Authorization: <authorization>'
{
  "object": "<string>",
  "data": [
    {
      "id": "<string>",
      "object": "<string>",
      "created": 123,
      "owned_by": "<string>"
    }
  ]
}
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

Authorization
string
required
API key in format: Bearer sk-xxxxxx

Response

object
string
Always “list”
data
array
Array of model objects
Use the model id (blockchain address) when creating sessions or making chat completion requests.