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

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

Response

object
string
Always “list”
data
array
Array of all model objects
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
Use this endpoint to discover all models in the marketplace, including those that may be temporarily unavailable or in testing.
Models marked as deleted are excluded from the response. Only models that exist on the blockchain and haven’t been soft-deleted are returned.