Skip to main content

Retrieve deployment configuration

GET 

/deployment

This endpoint allow to retrieve configuration (cloud provider, type, region, size) for the current deployment.

Responses

The response will be a JSON object with the following properties:

  • provider: the cloud provider used for the deployment

  • flavour: the type of deployment (SERVERLESS, CLUSTER for Instance CPU and GPU for Instance GPU deployments)

  • region: the region where the deployment is located

  • size: the size of the deployment

    {
    "provider": "AWS",
    "flavour": "SERVERLESS",
    "region": "UNKNOWN",
    "size": "UNKNOWN"
    }
Note

We may not always expose all the deployment details for privacy reasons, such as the exact region or size of the deployment.

Loading...