Skip to main content
GET
/
v1
/
agents
/
{agentId}
/
deployments
List deployments for an environment
curl --request GET \
  --url https://api.us.poly.ai/v1/agents/{agentId}/deployments \
  --header 'x-api-key: <api-key>'
{
  "deployments": [
    {
      "id": "<string>",
      "accountId": "<string>",
      "agentId": "<string>",
      "environment": "<string>",
      "artifactVersion": "<string>",
      "version": "<string>",
      "createdBy": "<string>",
      "createdAt": "<string>",
      "metadata": {}
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

agentId
string
required

Query Parameters

environment
enum<string>
required

Environment to list deployments for (sandbox, pre-release, live)

Available options:
sandbox,
pre-release,
live
limit
integer

Max number of deployments to return

Response

Successful response

Deployments for the requested environment, ordered newest first.

deployments
object[]
required
Last modified on April 22, 2026