# List Tasks [View original](https://ittybit.com/api/tasks/list) `GET /tasks` Retrieves a paginated list of all tasks for the current project. ### Parameters ```json [ { "in": "query", "name": "page", "schema": { "type": "integer", "minimum": 1, "default": 1 } }, { "in": "query", "name": "limit", "schema": { "type": "integer", "minimum": 1, "maximum": 100, "default": 20 } } ] ``` ### Responses #### 200 - Success **Example:** ```json { "meta": { "request_id": "req_abcdefghij1234567890", "org_id": "org_abcdefgh1234", "project_id": "prj_abcdefgh1234", "version": "2025-01-01", "type": "list", "limit": 20, "total": 100, "page": 1, "pages": 5 }, "data": [ { "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" ], "error": null, "links": { "self": "https://api.ittybit.com/tasks?page=1", "first": "https://api.ittybit.com/tasks?page=1", "prev": null, "next": "https://api.ittybit.com/tasks?page=2", "last": "https://api.ittybit.com/tasks?page=5" } } ```