Skip to main content
GET
/
v1
/
jobs
List jobs for the authenticated user
curl --request GET \
  --url https://api.urltodata.ai/v1/jobs \
  --header 'Authorization: Bearer <token>'
{
  "jobs": [
    {
      "id": "<string>",
      "queue": "<string>",
      "status": "queued",
      "createdAt": 123,
      "completedAt": 123,
      "durationMs": 123,
      "error": "<string>"
    }
  ],
  "limit": 123,
  "offset": 123,
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.urltodata.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:your-api-key
required

API key as Bearer token (e.g. Bearer mp_abc123_secret)

Query Parameters

status
enum<string>

Filter by job status

Available options:
queued,
active,
completed,
failed
limit
integer
default:20

Max jobs to return

offset
integer
default:0

Pagination offset

Response

Paginated job list

jobs
object[]
limit
integer
offset
integer
total
integer