Pixxel Downloads API

The Downloads API from Pixxel — 2 operation(s) for downloads.

Operations 2

POST /v0/aois/{aoi_id}/downloads Create a download request for assets in an AOI #
GET /v0/aois/{aoi_id}/downloads/{download_id} Get status of a download request #

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-downloads-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-downloads-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Swagger doc for Stargate
  title: stargate AOI Downloads API
  contact:
    name: Team-Identity
    email: identity@pixxel.co.in
  version: v0.1.0
servers:
- url: https://api.pixxel.space
tags:
- name: Downloads
paths:
  /v0/aois/{aoi_id}/downloads:
    post:
      security:
      - ApiKeyAuth: []
      description: Creates a download request for specified assets in an AOI
      tags:
      - Downloads
      summary: Create a download request for assets in an AOI
      operationId: AOICreateDownload
      parameters:
      - description: AOI ID
        name: aoi_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/atlas.DownloadCreateModel'
        description: Download Request
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/atlas.DownloadReadModel'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.ErrorResponse'
      externalDocs:
        description: View developer guide to learn more
        url: /developer/assets/create-download
  /v0/aois/{aoi_id}/downloads/{download_id}:
    get:
      security:
      - ApiKeyAuth: []
      description: Gets the status of a download request for an AOI
      tags:
      - Downloads
      summary: Get status of a download request
      operationId: GetDownloadStatus
      parameters:
      - description: AOI ID
        name: aoi_id
        in: path
        required: true
        schema:
          type: string
      - description: Download ID
        name: download_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/atlas.DownloadReadModel'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.ErrorResponse'
      externalDocs:
        description: View developer guide to learn more
        url: /developer/assets/get-status-download-request
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'
    atlas.DownloadCreateModel:
      type: object
      required:
      - asset_ids
      properties:
        asset_ids:
          type: array
          items:
            type: string
          example:
          - 00173fc9-7ea6-49a6-b030-620df1cf822d
          - 49a6-b030-620df1cf822d-00173fc9-7ea6
    atlas.DownloadReadModel:
      type: object
      properties:
        download_id:
          type: string
          example: dc01addf-b6c3-4fa9-9a49-dcdcb4c99229
        signed_url:
          type: string
          example: https://storage.account/download
        status:
          type: string
          example: SUCCESS
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: Authorization
      in: header