v32

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

countinteger required

Number of objects

Example response

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