Maxar Technologies Collections API

Browse and inspect collections

Operations 3

GET /collections List Collections #
GET /collections/{collectionId} Get Collection #
GET /tasks/{taskId}/collections List Collections For 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-collections-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-collections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Maxar Technologies Collections API
  version: 1.0.0
  description: 'Operations tagged Collections across 2 of this provider''s published API definitions: discovery-openapi.yml, tasking-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.maxar.com/discovery/v1
  description: Vantor Hub Discovery production
- url: https://api.maxar.com/tasking/v1
security:
- bearerAuth: []
tags:
- name: Collections
  description: Browse and inspect collections
paths:
  /collections:
    get:
      tags:
      - Collections
      summary: List Collections
      description: Enumerate the collections available to the caller (WorldView, Legion, Vivid, etc).
      operationId: listCollections
      responses:
        '200':
          description: Collection list
          content:
            application/json:
              schema:
                type: object
                properties:
                  collections:
                    type: array
                    items:
                      $ref: '#/components/schemas/Collection'
    servers:
    - url: https://api.maxar.com/discovery/v1
      description: Vantor Hub Discovery production
  /collections/{collectionId}:
    get:
      tags:
      - Collections
      summary: Get Collection
      description: Retrieve metadata for a single collection.
      operationId: getCollection
      parameters:
      - name: collectionId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Collection metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
    servers:
    - url: https://api.maxar.com/discovery/v1
      description: Vantor Hub Discovery production
  /tasks/{taskId}/collections:
    get:
      tags:
      - Collections
      summary: List Collections For Task
      operationId: listTaskCollections
      parameters:
      - name: taskId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Collections
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Collection_2'
    servers:
    - url: https://api.maxar.com/tasking/v1
components:
  schemas:
    Collection:
      type: object
      required:
      - id
      - type
      properties:
        id:
          type: string
        type:
          type: string
          enum:
          - Collection
        title:
          type: string
        description:
          type: string
        license:
          type: string
        extent:
          type: object
        providers:
          type: array
          items:
            type: object
    Collection_2:
      type: object
      properties:
        id:
          type: string
        task_id:
          type: string
        platform:
          type: string
        collected_at:
          type: string
          format: date-time
        catalog_id:
          type: string
        cloud_cover:
          type: number
        off_nadir:
          type: number
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-refined-from:
- discovery-openapi.yml
- tasking-openapi.yml