v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
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

api_keysstring[] required

List of API keys for the application

application_namestring required

Identifier of the application template from the catalog

components_configurationobject required

Mapping of component names to their configuration (e.g., "model": {...})

namestring required

Unique identifier of the deployment

regionsinteger[] required

Geographical regions where the deployment is active

Example response

{
  "api_keys": [
    "key1",
    "key2"
  ],
  "regions": [
    1,
    2
  ],
  "status": {
    "regions": [
      {
        "components": {
          "model": {
            "error": "",
            "status": "Active"
          }
        },
        "region_id": 1
      }
    ]
  }
}