Everywhere Inference Apps
List inference application deployments
Returns a list of your application deployments, including deployment names, associated catalog applications, regions, component configurations, and current status. Useful for monitoring and managing all active AI application instances.
get/cloud/v3/inference/applications/{project_id}/deployments
Path parameters
project_idinteger required
Project ID
Example:1
Project ID
Response
OK
Example response
{
"count": 1,
"results": [
{
"api_keys": [
"key1",
"key2"
],
"regions": [
1,
2
],
"status": {
"regions": [
{
"components": {
"model": {
"error": "",
"status": "Active"
}
},
"region_id": 1
}
]
}
}
]
}