List Admin Tasks
Paginated list of all tasks, searchable by task ID, task name, user, or organization (admin only).
Authorization
bearerAuth Authentication required for all endpoints. Supports Better Auth user credentials, dedicated coworker bearer API keys (coworker_), and the orchestrator service bearer (ORCHESTRATOR_SERVICE_TOKEN).
In: header
Query Parameters
Optional search term matched against task ID (exact), task name, user name and email, and organization name and slug (case-insensitive). Empty or missing lists all tasks.
length <= 255Cursor for pagination (ID of the last item from previous page)
Number of items to return (max 50)
201 <= value <= 50Response Body
application/json
application/json
application/json
curl -X GET "https://loading/v1/admin/tasks"{
"data": [
{
"id": "0195b9f4-7d35-7a4e-b14e-111111111111",
"name": "Quarterly report",
"status": "RUNNING",
"createdAt": "2021-01-01T00:00:00.000Z",
"owner": {
"id": "user_123",
"name": "Ada Lovelace",
"email": "ada@example.com"
},
"user": {
"id": "user_123",
"name": "Ada Lovelace",
"email": "ada@example.com"
},
"organization": {
"id": "org_123",
"name": "Acme Corp",
"slug": "acme-corp"
}
}
],
"meta": {
"timestamp": "2021-01-01T00:00:00.000Z",
"requestId": "string",
"pagination": {
"cursor": "cmg4zknxt0000l404yn4li0kp",
"limit": 20,
"total": 100,
"nextCursor": "cmi4gmksz000104l8wps8p7fp"
}
}
}{
"error": "Unauthorized",
"message": "Authentication required",
"kind": "organization_not_found",
"meta": {
"timestamp": "2021-01-01T00:00:00.000Z",
"requestId": "5091b3ea-994f-4417-8e04-2efc05dd8673",
"path": "/v1/agents",
"method": "GET"
}
}{
"error": "Unauthorized",
"message": "Authentication required",
"kind": "organization_not_found",
"meta": {
"timestamp": "2021-01-01T00:00:00.000Z",
"requestId": "5091b3ea-994f-4417-8e04-2efc05dd8673",
"path": "/v1/agents",
"method": "GET"
}
}List Admin Task X402 Payments GET
List x402 payments for observability and support (admin only). The signed X-PAYMENT header is a bearer instrument and is never returned.
List Admin Users GET
Paginated overview of all users with available credits, active subscription, and started-task counts (admin only).

