List model resources
Lists the caller's model resources.
Query parameters
Status filters. When omitted, resources in any status are returned.
Maximum number of resources to return (1-100)
Cursor for pagination
Filter resources in the current project by the creator ID. Pass "me" to show resources you created.
Response
List of model resources
Example response
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"error": {
"message": "Timed out waiting for cluster capacity. Try again later.",
"occurred_at": "2026-01-02T00:00:05Z"
},
"base_model": "Qwen/Qwen3-0.6B",
"compute_config": {
"num_generator_replicas": 1
},
"lora_enabled": true,
"created_at": "2026-01-02T00:00:00Z",
"updated_at": "2026-01-02T00:00:05Z",
"created_by": "user_123"
}
],
"meta": {
"limit": 20,
"has_more": true,
"next_cursor": "123e4567-e89b-12d3-a456-426614174000"
}
}Changes
Changed in 2 of the 14 revisions of this API.716
- ●
added the new
MODEL_RESOURCES_ERROR_CODE_CAPACITY_WAIT_TIMEOUTenum value to thedata/items/error/coderesponse property for the response status200response-property-enum-value-added
- ○
removed the
MODEL_RESOURCES_ERROR_CODE_CAPACITY_UNAVAILABLEenum value from thedata/items/error/coderesponse property for the response status200response-property-enum-value-removed
- ●
- ▲
removed the enum value
MODEL_RESOURCES_STATUS_CREATINGfrom thequeryrequest parameterstatusrequest-parameter-enum-value-removed
- ▲
removed the enum value
MODEL_RESOURCES_STATUS_ERRORfrom thequeryrequest parameterstatusrequest-parameter-enum-value-removed
- ▲
removed the enum value
MODEL_RESOURCES_STATUS_PENDINGfrom thequeryrequest parameterstatusrequest-parameter-enum-value-removed
- ▲
removed the enum value
MODEL_RESOURCES_STATUS_READYfrom thequeryrequest parameterstatusrequest-parameter-enum-value-removed
- ▲
removed the enum value
MODEL_RESOURCES_STATUS_STOPPEDfrom thequeryrequest parameterstatusrequest-parameter-enum-value-removed
- ▲
removed the enum value
MODEL_RESOURCES_STATUS_STOPPINGfrom thequeryrequest parameterstatusrequest-parameter-enum-value-removed
- ▲
the
meta/limitresponse's property type/format changed frominteger/int32tointeger/for status200response-property-type-changed
- ○
added the new optional
queryrequest parametercreated_bynew-optional-request-parameter
- ○
for the
queryrequest parameterlimit, the type/format was generalized frominteger/int32tointeger/request-parameter-type-generalized
- ○
for the
queryrequest parameterstatus, the type/format was generalized fromstring/toarray/request-parameter-type-generalized
- ○
added the required property
data/items/created_byto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/optimizer_configto the response with the200statusresponse-required-property-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲