List Page Jobs
List recent jobs for the authenticated user.
GET /api/page-jobs?limit=20&cursor=2026-02-23T00:00:00.000ZAuthentication
Required. API key or browser session.
Query params
| Param | Type | Default | Description |
|---|---|---|---|
limit | integer | 20 | 1-100 |
cursor | ISO datetime | none | Pagination cursor (createdAt from previous response) |
Response
Status: 200 OK
{
"jobs": [
{
"id": "uuid",
"type": "single",
"status": "queued",
"createdAt": "2026-02-23T00:00:00.000Z"
}
],
"nextCursor": "2026-02-23T00:00:00.000Z"
}Errors
| Status | Error | When |
|---|---|---|
| 400 | Invalid query params | Bad limit/cursor |
| 401 | Not authenticated | Missing or invalid auth |
Last updated on