Passo Developers
Api

List the caller's deals

GET
/deals

Returns the deals in the caller's workspace — each with the job title and brand name. The workspace is selected via the Passo-Workspace header. Paginated via limit (default 20, max 100) and offset; total is the unpaginated count.

Authorization

oauthJwt
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).

Formatuuid

Response Body

application/json

curl -X GET "https://example.com/deals"
{  "deals": [    {      "id": "string",      "jobId": "string",      "creatorId": "string",      "creatorName": "string",      "jobTitle": "string",      "jobStatus": "open",      "brandName": "string",      "createdAt": "string",      "updatedAt": "string"    }  ],  "total": -9007199254740991,  "limit": -9007199254740991,  "offset": -9007199254740991}