Everywhere Inference Apps
Get inference application deployment
Retrieves detailed information about a specific application deployment. The response includes the catalog application it was created from, deployment name, active regions, configuration of each component, and the current status of the deployment.
get/cloud/v3/inference/applications/{project_id}/deployments/{deployment_name}
Path parameters
project_idinteger required
Project ID
Example:1
Project ID
deployment_namestring required
Name of deployment
Name of deployment
Response
OK
Example response
{
"api_keys": [
"key1",
"key2"
],
"regions": [
1,
2
],
"status": {
"regions": [
{
"components": {
"model": {
"error": "",
"status": "Active"
}
},
"region_id": 1
}
]
}
}