Skip to main content
GET
/
v1
/
tasks
Get a list of tasks
curl --request GET \
  --url https://api.turbofiles.io/v1/tasks \
  --header 'Authorization: Bearer <token>'
{
  "jsonapi": {
    "version": "1.1"
  },
  "data": [
    {
      "id": "<string>",
      "attributes": {
        "public": false,
        "created_at": "2023-01-01T00:00:00.000000Z",
        "updated_at": "2023-01-02T00:00:00.000000Z",
        "settings": {},
        "status": "COMPLETED",
        "format": {
          "input": "image/png",
          "output": "image/webp"
        },
        "started_at": "2023-01-03T00:00:00.000000Z",
        "processed_at": "2023-01-04T00:00:00.000000Z",
        "processing_metadata": {}
      },
      "relationships": {
        "input": {
          "data": {
            "id": "<string>"
          },
          "links": {
            "self": "<string>",
            "related": "<string>"
          }
        },
        "output": {
          "data": {
            "id": "<string>"
          },
          "links": {
            "self": "<string>",
            "related": "<string>"
          }
        }
      },
      "links": {
        "self": "<string>"
      }
    }
  ],
  "links": {
    "prev": "<string>",
    "next": "<string>"
  },
  "meta": {
    "rangeTruncated": true
  },
  "included": [
    {
      "id": "8fhd83jpk",
      "attributes": {
        "size": 504233,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "links": {
        "self": "<string>",
        "upload": "<string>",
        "download": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.turbofiles.io/llms.txt

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

Authorizations

Authorization
string
header
required

Authentication token must be provided in the Authorization header using the Bearer scheme. Example: Authorization: Bearer your-api-key-or-token

Query Parameters

page
object

Cursor-based pagination parameters

Response

200 - application/vnd.api+json

Retrieved successfully

jsonapi
object
required
data
object[]
required
meta
object
required
included
object[]