Maxar Technologies Feasibility API

The Feasibility API from Maxar Technologies — 1 operation(s) for feasibility.

Operations 1

POST /feasibility Check Tasking Feasibility #

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-feasibility-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-feasibility-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Maxar Geospatial Platform Tasking Feasibility 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: Feasibility
paths:
  /feasibility:
    post:
      tags:
      - Feasibility
      summary: Check Tasking Feasibility
      operationId: checkFeasibility
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeasibilityRequest'
      responses:
        '200':
          description: Feasibility report
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Feasibility'
components:
  schemas:
    FeasibilityRequest:
      type: object
      required:
      - aoi
      - start
      - end
      properties:
        aoi:
          type: object
        start:
          type: string
          format: date-time
        end:
          type: string
          format: date-time
        platforms:
          type: array
          items:
            type: string
    Feasibility:
      type: object
      properties:
        feasible:
          type: boolean
        windows:
          type: array
          items:
            type: object
            properties:
              start:
                type: string
                format: date-time
              end:
                type: string
                format: date-time
              platform:
                type: string
              expected_cloud_cover:
                type: number
              expected_off_nadir:
                type: number
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer