Skip to main content
GET
/
v1
/
workspaces
/
{workspace_id}
/
zombies
List zombies in a workspace
curl --request GET \
  --url https://api.usezombie.com/v1/workspaces/{workspace_id}/zombies \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "status": "active",
      "created_at": 123,
      "updated_at": 123
    }
  ],
  "total": 123,
  "cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.usezombie.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Obtain a token via the CLI auth flow (POST /v1/auth/sessions) or GitHub OAuth

Path Parameters

workspace_id
string<uuid>
required

UUIDv7 of the workspace.

Query Parameters

cursor
string

Opaque page cursor from a prior response's cursor field, formatted {created_at_epoch_ms}:{zombie_id}. Omit for the first page.

limit
integer
default:20

Page size. Defaults to 20. Clamped to a maximum of 100.

Required range: 1 <= x <= 100

Response

OK

items
object[]
required
total
integer
required

Count of items in this response (not total across pages).

cursor
string | null
required

Opaque cursor to fetch the next page. null when there are no more pages.