Skip to content
Primary navigation

Models

List and describe the various models available in the API.

List models
$ openai models list
GET/models
Retrieve model
$ openai models retrieve
GET/models/{model}
Delete a fine-tuned model
$ openai models delete
DELETE/models/{model}
ModelsExpand Collapse
model: object { id, created, object, owned_by }

Describes an OpenAI model offering that can be used with the API.

id: string

The model identifier, which can be referenced in the API endpoints.

created: number

The Unix timestamp (in seconds) when the model was created.

object: "model"

The object type, which is always “model”.

owned_by: string

The organization that owns the model.

model_deleted: object { id, deleted, object }
id: string
deleted: boolean
object: string