Api
List the caller's jobs
Returns the jobs in the caller's workspace, newest first. The workspace is resolved from the request — an API key uses its own workspace; a user token selects one via the Passo-Workspace header. Paginated via limit (default 20, max 100) and offset; total is the unpaginated count.
AuthorizationBearer <token>
A Supabase-issued OAuth user access token. On collection endpoints, pair with a Passo-Workspace header to pick a workspace.
In: header
Header Parameters
Passo-Workspace?string
The workspace id (uuid) to operate in. OAuth callers with more than one workspace must send it; a single-workspace caller may omit it. Ignored for API keys (the key is pinned to its workspace).
Format
uuidResponse Body
application/json
curl -X GET "https://example.com/jobs"{ "jobs": [ { "id": "string", "workspaceId": "string", "title": "string", "status": "open", "createdAt": "string", "updatedAt": "string" } ], "total": -9007199254740991, "limit": -9007199254740991, "offset": -9007199254740991}