API ReferenceWorkstreams
List Workstreams
Authorization
bearerAuth AuthorizationBearer <token>
Send a SimpleServe API key as Authorization: Bearer <key>.
In: header
Query Parameters
status?string
Value in
- "open"
- "complete"
archived?boolean
Default
falselimit?integer
Maximum records to return.
Range
1 <= value <= 100Default
20cursor?string
Workstream ID from next_cursor.
Length
1 <= length <= 80Response Body
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/workstreams"{ "object": "list", "data": [ { "id": "string", "object": "workstream", "title": "string", "objective": "string", "execution_mode": "parallel", "status": "open", "display_status": "working", "agents": [ { "id": "string", "name": "string" } ], "thread_count": 0, "cost_usd": 0, "max_cost_usd": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "completed_at": "2019-08-24T14:15:22Z", "archived_at": "2019-08-24T14:15:22Z" } ], "has_more": true, "next_cursor": "string"}