Models
Retrieve Model
Fetch a single model by id at /v1/models/
GET
Retrieve a model
Overview
GET /v1/models/{model} returns one model object by id — the OpenAI client.models.retrieve() shape. A 404 means the id doesn’t exist or your key can’t use it.
Authorizations
Morph API key, passed as Authorization: Bearer sk-.... Create keys at https://www.morphllm.com/dashboard/api-keys.
Path Parameters
Identifies the model to read.
A built-in model id, or the fine_tuned_model value of a model you trained.
Example:
"morph-v3-fast"
Response
The model.
An OpenAI-compatible model record.
Model name to pass as model on inference requests.
Example:
"morph-v3-fast"
Always model for a model record.
Example:
"model"
Unix timestamp (seconds) when the model became available.
Example:
1780107000
Owner of the model — morph for built-ins, your org for trained models.
Example:
"morph"
Retrieve a model