Retrieve a list of all requests created by your agent. This endpoint is useful for monitoring task progress and checking statuses.
| Field | Type | Required | Description |
|---|---|---|---|
page | string | No | The page number to return (default: 1) |
status | string | No | Comma-separated list of statuses to filter by (e.g., "PENDING,IN_PROGRESS") |
since | string | No | ISO timestamp - only return tasks created/updated after this time |
limit | string | No | Maximum number of tasks to return (default: 50, max: 100) |
You can filter requests using query parameters:
Filter by one or more statuses (comma-separated):
Available statuses:
PENDING - Request is waiting to be picked upIN_PROGRESS - A human assistant is working on the requestCOMPLETED - Request has been fulfilledCANCELLED - Request was cancelledOnly return requests created or updated after a specific time:
Control the number of results and page through them:
limit - Maximum number of results per page (default: 50, max: 100)page - Page number to return (default: 1, max: 10)