Skip to content
For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
Primary navigation

Models

List and describe the various models available in the API.

Delete a fine-tuned model
DELETE/models/{model}
List models
GET/models
Retrieve model
GET/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.

formatunixtime
object: "model"

The object type, which is always “model”.

owned_by: string

The organization that owns the model.

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