These endpoints provide access to project information, useful for organizations with multiple projects.
Satelligence API (v1)
The satelligence API provides 4 capabilities to synchronize data to and from the platform:
- Bulk uploads
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.
- Plot downloads
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.
- Jurisdictions new!
Access jurisdiction-level deforestation risk assessments for administrative regions worldwide. Filter by country, risk level, and regulatory framework cutoff date (EUDR, RSPO, etc.) to get pre-computed values and risk information.
- 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.
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.
Bulk Uploads
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:
- Create a bulk upload with the POST
/bulk-uploadsendpoint, which generates signed URLs for each file you want to upload. - Use the signed URLs to upload the files to the required place for this upload.
- Start the bulk upload with the POST
/bulk-uploads/startendpoint.
The process can be automated with the scripts linked here.
Jurisdictions - New!
These endpoints provide access to jurisdiction-level deforestation risk assessments. Jurisdictions are administrative regions for which risk assessments were pre-computed for different regulatory frameworks. For more information, visit the Resource Center page on Jurisdictions.
Request
Retrieves a paginated list of jurisdictions matching the specified filters. Jurisdictions are administrative regions with pre-computed deforestation risk assessments.
Use this endpoint to:
- Find jurisdictions by country and risk level
- Filter by presence of risk factors (remaining forest, protected areas, indigenous territories)
- Get jurisdiction-level deforestation data for a specific regulatory framework
Results are paginated with 100 jurisdictions per page. Use the nextUrl in the response to fetch subsequent pages.
The regulatory framework cutoff date to use for risk assessment
Comma-separated list of risk levels to filter by (maximum 3). Values are none, low, medium, high.
Comma-separated list of ISO 3166-1 alpha-2 country codes to filter by (maximum 5)
- Mock serverhttps://docs.satelligence.com/_mock/api/v1/jurisdictions
- Production serverhttps://api.satelligence.com/v1/jurisdictions
- Python
- JavaScript
- curl
- C#
- Go
- Java
- Payload
import requests
url = "https://docs.satelligence.com/_mock/api/v1/jurisdictions"
query = {
"framework": "NPDE",
"riskLevel": "low,medium,high",
"country": "BR,ID,CO",
"hasRemainingForest": "true",
"hasProtectedAreas": "true",
"hasIndigenousTerritories": "true",
"cursor": "string"
}
headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}
response = requests.get(url, headers=headers, params=query)
data = response.json()
print(data){ "count": 100, "nextUrl": "string", "results": [ { … } ] }
- Mock serverhttps://docs.satelligence.com/_mock/api/v1/jurisdictions/{id}
- Production serverhttps://api.satelligence.com/v1/jurisdictions/{id}
- Python
- JavaScript
- curl
- C#
- Go
- Java
- Payload
import requests
id = "YOUR_id_PARAMETER"
url = "https://docs.satelligence.com/_mock/api/v1/jurisdictions/" + id
query = {
"framework": "NPDE"
}
headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}
response = requests.get(url, headers=headers, params=query)
data = response.json()
print(data){ "id": "string", "name": "Acre", "administrationLevel": 1, "administrationUnitName": "State", "gadmId": "BRA.1_1", "areaHa": 16493200, "country": "BR", "boundingBox": { "minLng": 0, "minLat": 0, "maxLng": 0, "maxLat": 0 }, "assessment": { "assessmentDate": "2024-01-15", "framework": "NPDE", "riskLevel": "none", "deforestation": { … }, "commodities": { … }, "riskFactors": { … }, "monthToLandCoverToDeforestationHa": { … } } }