List models
Lists the currently available models, and provides basic information about each one such as the owner and availability.
Request
GET
https://ai.api.cloud.yandex.net/v1/models
Responses
200 OK
OK
Body
application/json
{
"object": "list",
"data": [
{
"id": "example",
"created": 0,
"object": "model",
"owned_by": "example"
}
]
}
|
Name |
Description |
|
data |
Type: Model[] Example
|
|
object |
Type: string Const: Example: |
Model
Describes an AI Studio model offering that can be used with the API.
|
Name |
Description |
|
created |
Type: integer The Unix timestamp (in seconds) when the model was created. |
|
id |
Type: string The model identifier, which can be referenced in the API endpoints. Example: |
|
object |
Type: string The object type, which is always "model". Const: Example: |
|
owned_by |
Type: string The organization that owns the model. Example: |
Example
{
"id": "example",
"created": 0,
"object": "model",
"owned_by": "example"
}