Skip to content

Models

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

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