Skip to content

Get a model

GET
/models/{id}

Ce point d’accès, publiquement accessible, retourne un modèle de transcription disponible dans le système à partir de son id.

id
required
integer
Example
1

Information about a model.

object
data
required
object
id
required

The unique numeric identifier for the model. Use this ID when creating new resources that depend on a specific model, such as a live session.

integer
Example
1
name
required

The unique, human-readable name of the transcription model (e.g., ‘tiny’, ‘large-v1’, ‘large-v2’). This name is used to select a model when creating a new live session via the API.

string
Example
tiny
active
required

Indicates whether the model is currently available for use. An inactive model (false) cannot be used to create new transcription sessions.

boolean
Example
true
vram
required

The estimated amount of VRAM (in Megabytes) required to load and run this model. This value is used to calculate resource allocation and prevent overloading the system.

integer
Example
1250
Example
{
"data": {
"name": "tiny",
"active": true,
"vram": 625,
"id": 1
}
}
object
detail
required

Information about the error.

string