List Tasks

View Markdown

Get a paginated list of your tasks.


GET
/tasks

Authorization

AuthorizationRequiredBearer <token>

See API Security for more details.

In: header

Query Parameters

pageinteger
Default: 1Minimum: 1
limitinteger
Default: 20Minimum: 1Maximum: 100

Header Parameters

Accept-Versionstring

Specifies the API Version

Default: "2025-08-20"Value in: "2025-08-20" | "latest"

Response Body

Success

responseRequiredarray<object>
const tasks = await fetch("https://api.ittybit.com/tasks", {
  headers: { "Authorization": "Bearer ITTYBIT_API_KEY" }
})
[
  {
    "id": "task_abcdefgh1234",
    "object": "task",
    "kind": "image",
    "input": {
      "id": "file_abcdefgh1234",
      "object": "source",
      "kind": "video",
      "type": "video/mp4",
      "width": 1920,
      "height": 1080,
      "duration": 123.45,
      "filesize": 12345678,
      "url": "https://you.ittybit.net/file_abcdefgh1234",
      "ref": "original"
    },
    "options": {
      "width": 320,
      "format": "png",
      "ref": "thumbnail"
    },
    "output": {
      "id": "file_abcdefgh5678",
      "object": "source",
      "kind": "image",
      "type": "image/png",
      "width": 320,
      "height": 180,
      "filesize": 12345,
      "url": "https://you.ittybit.net/file_abcdefgh5678",
      "ref": "thumbnail"
    },
    "status": "completed",
    "created": "2025-01-01T01:23:45Z",
    "updated": "2025-01-01T01:23:46Z"
  },
  "… 19 more task objects"
]