Skip to main content
GET
/
api
/
harbor
/
deployments
curl -X GET "https://api.usesynth.ai/api/harbor/deployments?status=ready&limit=50" \
  -H "Authorization: Bearer $SYNTH_API_KEY"
{
  "deployments": [
    {
      "id": "dep_abc123",
      "name": "my-deployment",
      "status": "ready"
    }
  ]
}
List Harbor deployments for your organization.
status
string
Filter by status (pending, building, ready, failed).
limit
integer
default:"50"
Max number of results.
offset
integer
default:"0"
Pagination offset.
curl -X GET "https://api.usesynth.ai/api/harbor/deployments?status=ready&limit=50" \
  -H "Authorization: Bearer $SYNTH_API_KEY"
{
  "deployments": [
    {
      "id": "dep_abc123",
      "name": "my-deployment",
      "status": "ready"
    }
  ]
}