HTTP API reference
Clients
Agency clients (projects) scoped to your organization. Required client_id on every extraction and list call.
Endpoints in this topic
GET/api/clients
List clients for the authenticated organization.
GET — no query params; scoped to the API key organization.
{ clients: [{ id, name, tax_id?, email?, notes?, created_at }] }POST/api/clients
Create a client under the organization.
Content-Type: application/json
{ "name": "…", "tax_id"?: "…", "email"?: "…" }201 { client: { id, name, tax_id?, email?, notes?, created_at } }GET/api/clients/[id]
Fetch one client by id.
Path [id] = client UUID.
{ client: { id, name, tax_id?, email?, notes?, created_at } }