Workspaces
Authorizations
Query parameters
orderingstringOptional
Which field to use when ordering the results.
pageintegerOptional
A page number within the paginated result set.
page_sizeintegerOptional
Number of results to return per page.
Responses
200Success
application/json
get
GET /developers/workspaces/ HTTP/1.1
Host: api.erathos.com
Authorization: YOUR_API_KEY
Accept: */*
200Success
{
"count": 50,
"next_page": 3,
"previous_page": 1,
"page_size": 10,
"total_pages": 5,
"current_page": 2,
"results": [
{
"_id": "123e4567-e89b-12d3-a456-426614174000",
"_created_at": "2025-07-03T11:06:31.106Z",
"name": "text",
"domain": "text"
}
]
}
Last updated