Skip to main content
GET
/
v1
/
tasks
/
List Active Tasks
curl --request GET \
  --url https://api.mixpeek.com/v1/tasks/ \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "additional_data": {
        "batch_id": "batch_xyz789",
        "bucket_id": "bkt_products",
        "job_id": "ray_job_123"
      },
      "description": "Batch processing task in progress",
      "inputs": [
        "batch_xyz789"
      ],
      "status": "PROCESSING",
      "task_id": "task_abc123def456",
      "task_type": "api_buckets_batches_process"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "page_size": 123,
    "total_pages": 123,
    "next_page": "<string>",
    "previous_page": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication using your API key. Format: 'Bearer your_api_key'. To get an API key, create an account at mixpeek.com/start and generate a key in your account settings.

Headers

Authorization
string
required

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Examples:

"Bearer sk_live_abc123def456"

"Bearer sk_test_xyz789"

Query Parameters

page
integer | null
default:1
page_size
integer
default:10

Response

Successful Response

Response model for listing tasks.

results
TaskResponse · object[]
required
pagination
object
required

PaginationResponse.