Satelligence API (v1)

The satelligence API provides 4 capabilities to synchronize data to and from the platform:

  1. Bulk uploads new!

A full fledged set of endpoints to manage supply chain data in the platform. Use this endpoint to set up automated data synchronization of supply chain data to the Satelligence platform and fully leverage the risk assessment and mitigation features inside the platform.

  1. Plot downloads new!

An endpoint that can serve to sync plot data from the platform into your own systems. It can serve both plot metadata, geometries, and risk assessments from the platform.

  1. Get Risk Info

A lightweight endpoint to access geospatial risk information for a given boundary without uploading supply chain data to the platform. Use this endpoint to leverage the Satelligence geospatial data but build your own risk assessment and mitigation strategies outside of the Satelligence platform.

  1. Detections export

To fetch all deforestation and fire detections in shapefile format. Use this endpoint to gather the raw Satelligence real time data and build your own archive of detections for fully custom workflows.

Authentication

Authentication requires an API token, contact support@satelligence.com to request one. To authenticate your requests, set the Authorization: Bearer $token header in your requests.

The token is connected to a personal account, it will have the same permissions as the account that created it. If the linked user belongs to multiple projects, the token will default to the 'active project' for that user.

Languages
Servers
Mock server

https://docs.satelligence.com/_mock/api/

Production server

https://api.satelligence.com/

Bulk Uploads - New!

These endpoints give full control over supply chain data uploads and ingestion.

For a bulk upload, plots must be formatted as a GeoJSON file and uploaded to a secure location in Satelligence's Google Cloud Storage bucket through a signed URL. The complete process consists of three steps:

  1. Create a bulk upload with the POST /bulk-uploads endpoint, which generates signed URLs for each file you want to upload.
  2. Use the signed URLs to upload the files to the required place for this upload.
  3. Start the bulk upload with the POST /bulk-uploads/start endpoint.

The process can be automated with the scripts linked here.

Operations

Plots - New!

Operations

Risk Information

Operations

Detections Export

Operations

Get detections export

Request

Retrieves download URLs for deforestation and fire detection data for a specified year and month. The downloaded file contains shapefiles with detailed detection information.

Security
bearerAuth
Query
monthIndexinteger[ 0 .. 11 ]required

Zero-based index of the month (e.g., 11 for December)

yearinteger(int32)>= 2016required

Year in YYYY format

projectIdstring(uuid)

Project ID (optional, defaults to user's 'active project')

import requests

url = "https://docs.satelligence.com/_mock/api/detections-export"

query = {
  "monthIndex": "11",
  "year": "2016",
  "projectId": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}

headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}

response = requests.get(url, headers=headers, params=query)

data = response.json()
print(data)

Responses

Successful response with download URL

Bodyapplication/json
downloadUrlstring or null

URL to download the detection data, null if unavailable

Example: "https://storage.googleapis.com/..."
Response
application/json
{ "downloadUrl": "https://storage.googleapis.com/..." }

Projects

These endpoints provide access to project information, useful for organizations with multiple projects.

Operations