---
title: "Retrieve a model"
method: GET
path: "/v1/models/{model}"
tags: ["models"]
---

# Retrieve a model

`GET /v1/models/{model}`

Return one model by name. OpenAI Models-API parity.

## Path parameters

- `model` string, required — A built-in model id, or the `fine_tuned_model` value of a model you trained.

## Response `200`

The model.

- Model — An OpenAI-compatible model record.
  - `id` string, required — Model name to pass as `model` on inference requests.
  - `object` string, required — Always `model` for a model record.
  - `created` integer, required — Unix timestamp (seconds) when the model became available.
  - `owned_by` string, required — Owner of the model — `morph` for built-ins, your org for trained models.

## Other responses

- `400` — Malformed request — missing or invalid fields.
- `401` — Missing or invalid API key.
- `404` — The requested resource does not exist.
- `429` — Rate limited — retry after the interval in the Retry-After header.
- `500` — Internal error — safe to retry with backoff.

---

[API](https://skmtc.dev/morphllm/apis/morph-api.md) · [All operations](https://skmtc.dev/morphllm/apis/morph-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/morphllm/morph-api/revisions/b9a74274b2ab/schema)
