---
title: "GET /v1/workers"
method: GET
path: "/v1/workers"
tags: ["Workers"]
---

# GET /v1/workers

`GET /v1/workers`

## Query parameters

- `limit` string — a number less than or equal to 100
- `afterId` string — The id of the worker.
- `beforeId` string — The id of the worker.
- `statuses` string[]
- `types` string[]
- `workEmail` string

## Response `200`

Success

- object
  - `hasMore` boolean, required
  - `data` object[], required
    - `id` string, required — The id of the worker.
    - `position` string, required
    - `type` 'employee' | 'contractor', required
    - `status` 'onboarding' | 'active' | 'offboarding' | 'inactive', required
    - `startDate` string, required — A date string in the form YYYY-MM-DD
    - `endDate` string, nullable, required — A date string in the form YYYY-MM-DD
    - `isBusiness` boolean, nullable, required
    - `businessName` string, nullable, required
    - `firstName` string, required
    - `lastName` string, required
    - `email` string, required — An email with a reasonably valid regex (shamelessly taken from zod)
    - `workEmail` string, nullable, required — An email with a reasonably valid regex (shamelessly taken from zod)
    - `preferredName` string, nullable, required
    - `displayName` string, required — The "ui" name of a worker. If it's a business contractor business name is used. Otherwise we default to preferred name, then first-last.

## Other responses

- `400` — The request did not match the expected schema
- `401` — ApiKeyUnauthorized
- `429` — RateLimitExceeded
- `500` — InternalServerError

## Changes

- **2025-12-24** `8d23b0949270` — 1 breaking, 5 info
  - the response's body type/format changed from `array`/`` to `object`/`` for status `200`
  - added the new optional `query` request parameter `afterId`
  - added the new optional `query` request parameter `beforeId`
  - added the new optional `query` request parameter `limit`
  - …2 more

[Change history](https://skmtc.dev/teamwarp/apis/warp-api/changes/v1/workers/get.md)

---

[API](https://skmtc.dev/teamwarp/apis/warp-api.md) · [All operations](https://skmtc.dev/teamwarp/apis/warp-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/teamwarp/warp-api/revisions/fbc6e46bbea2/schema)
