Pixxel Tasks API

The Tasks API from Pixxel — 1 operation(s) for tasks.

Operations 1

PUT /v0/workflows/{workflow_id}/jobs/{job_id}/tasks/{task_id}/download Download Task #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/pixxel-tasks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

pixxel-tasks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Swagger doc for Stargate
  title: stargate AOI Tasks API
  contact:
    name: Team-Identity
    email: identity@pixxel.co.in
  version: v0.1.0
servers:
- url: https://api.pixxel.space
tags:
- name: Tasks
paths:
  /v0/workflows/{workflow_id}/jobs/{job_id}/tasks/{task_id}/download:
    put:
      security:
      - ApiKeyAuth: []
      description: Creates a download package containing the specified task assets from a job run of a workflow.
      tags:
      - Tasks
      summary: Download Task
      operationId: downloadTask
      parameters:
      - description: Unique ID for the workflow to download from
        name: workflow_id
        in: path
        required: true
        schema:
          type: string
      - description: Specific job execution ID within the workflow
        name: job_id
        in: path
        required: true
        schema:
          type: string
      - description: Target task ID containing assets to download
        name: task_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/dexter.PutTaskUpstreamResponseBody'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.ErrorResponse'
      externalDocs:
        description: View developer guide to learn more
        url: /developer/jobs/download-task
components:
  schemas:
    common.Error:
      type: object
      properties:
        code:
          type: string
        details: {}
        message:
          type: string
    common.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/common.Error'
    dexter.PutTaskUpstreamResponseBody:
      type: object
      properties:
        id:
          description: Id is the unique identifier of the task
          type: string
          x-order: '10'
        job_id:
          description: JobId is the ID of the job
          type: string
          x-order: '20'
        workflow_id:
          description: WorkflowId is the ID of the workflow
          type: string
          x-order: '30'
        status:
          description: Status indicates the current status of the download operation
          type: string
          x-order: '40'
        signed_url:
          description: SignedUrl is the URL where the packaged assets can be downloaded from
          type: string
          x-order: '50'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: Authorization
      in: header