Skip to content

List Deployments

GET
/api/v1/deployments
curl --request GET \
--url 'https://aura.strangeworks.com/api/v1/deployments?limit=50&offset=0' \
--header 'Authorization: Bearer <token>'
limit
Limit

Maximum rows to return.

integer
default: 50 >= 1 <= 200

Maximum rows to return.

offset
Offset

Rows to skip before the returned page.

integer
0

Rows to skip before the returned page.

Successful Response

Media typeapplication/json
DeploymentListResponse
object
deployments
required
Deployments
Array<object>
DeploymentResponse
object
created_at
required
Created At
string format: date-time
handle
required
Handle
string
id
required
Id
string
name
required
Name
string
updated_at
required
Updated At
string format: date-time
limit
required
Limit
integer
offset
required
Offset
integer
total
required
Total
integer
Examplegenerated
{
"deployments": [
{
"created_at": "2026-04-15T12:00:00Z",
"handle": "example",
"id": "example",
"name": "example",
"updated_at": "2026-04-15T12:00:00Z"
}
],
"limit": 1,
"offset": 1,
"total": 1
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}