GET
/
api
/
v1
/
agents
/
{agentId}
/
deployments
List agent deployments
curl --request GET \
  --url https://prod.featherhq.com/api/v1/agents/{agentId}/deployments \
  --header 'X-API-Key: <api-key>'
{
  "deployments": [
    {
      "id": "<string>",
      "agentVersionId": "<string>",
      "agentId": "<string>",
      "deploymentStage": "DEV",
      "deployedAt": "<string>",
      "createdAt": "<string>"
    }
  ],
  "pagination": {
    "limit": 10,
    "nextCursor": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

agentId
string
required

Query Parameters

limit
string
cursor
string

Response

200
application/json

List of agent deployments

The response is of type object.