Maxar Technologies Tasks API

The Tasks API from Maxar Technologies — 2 operation(s) for tasks.

Operations 4

GET /tasks List Tasking Requests #
POST /tasks Submit Tasking Request #
GET /tasks/{taskId} Get Task #
DELETE /tasks/{taskId} Cancel 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/maxar-technologies-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

maxar-technologies-tasks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Maxar Geospatial Platform Tasking Tasks API
  description: Real-time tasking API for commissioning new satellite collections against the Vantor Constellation — WorldView-1/2/3, GeoEye-1 and the six-satellite WorldView Legion next-generation fleet launched 2024-2026. Profile derived from MGP_SDK `Interface.tasking` surface and Vantor public product descriptions; field shapes follow common Maxar tasking conventions.
  version: 1.0.0
servers:
- url: https://api.maxar.com/tasking/v1
security:
- bearerAuth: []
tags:
- name: Tasks
paths:
  /tasks:
    get:
      tags:
      - Tasks
      summary: List Tasking Requests
      operationId: listTasks
      parameters:
      - name: status
        in: query
        schema:
          type: string
          enum:
          - submitted
          - planned
          - in_progress
          - complete
          - cancelled
          - failed
      - name: limit
        in: query
        schema:
          type: integer
          default: 25
      responses:
        '200':
          description: Tasks
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Task'
    post:
      tags:
      - Tasks
      summary: Submit Tasking Request
      operationId: submitTask
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaskRequest'
      responses:
        '201':
          description: Task submitted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Task'
  /tasks/{taskId}:
    get:
      tags:
      - Tasks
      summary: Get Task
      operationId: getTask
      parameters:
      - name: taskId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Task
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Task'
    delete:
      tags:
      - Tasks
      summary: Cancel Task
      operationId: cancelTask
      parameters:
      - name: taskId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Cancelled
components:
  schemas:
    Task:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        status:
          type: string
          enum:
          - submitted
          - planned
          - in_progress
          - complete
          - cancelled
          - failed
        priority:
          type: string
        created_at:
          type: string
          format: date-time
        windows:
          type: array
          items:
            type: object
            properties:
              start:
                type: string
                format: date-time
              end:
                type: string
                format: date-time
              platform:
                type: string
    TaskRequest:
      type: object
      required:
      - aoi
      - start
      - end
      properties:
        name:
          type: string
        aoi:
          type: object
          description: GeoJSON geometry
        start:
          type: string
          format: date-time
        end:
          type: string
          format: date-time
        priority:
          type: string
          enum:
          - Standard
          - Priority
          - Rush
          - Select
        platforms:
          type: array
          items:
            type: string
            enum:
            - WorldView-1
            - WorldView-2
            - WorldView-3
            - GeoEye-1
            - WorldView-Legion
        max_cloud_cover:
          type: number
        max_off_nadir:
          type: number
        gsd:
          type: number
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer