DocsDeployment APIModels

Models

List available models on your deployment. GET /api/v1/models.

Navigation

List Models

GET /api/v1/models

Returns the list of models available on your deployment. Each deployment runs one primary model determined by the template you selected.

Response

{
  "object": "list",
  "data": [
    {
      "id": "llama-4-scout",
      "object": "model",
      "created": 1714000000,
      "owned_by": "macyou",
      "permission": [],
      "root": "llama-4-scout",
      "parent": null
    }
  ]
}

Usage

curl https://your-deployment.macyou.co/api/v1/models \
  -H "Authorization: Bearer mcy_live_YOUR_KEY"

Use the id field from the response as the modelparameter in Chat Completions and other endpoints.