Skip to main content
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

Authorization
string
header
required

Morph API key, passed as Authorization: Bearer sk-.... Create keys at https://www.morphllm.com/dashboard/api-keys.

Path Parameters

model
string
required

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.

id
string
required

Model name to pass as model on inference requests.

Example:

"morph-v3-fast"

object
string
required

Always model for a model record.

Example:

"model"

created
integer
required

Unix timestamp (seconds) when the model became available.

Example:

1780107000

owned_by
string
required

Owner of the model — morph for built-ins, your org for trained models.

Example:

"morph"