Initializing Platform...
The SATRANG REST API gives you full programmatic access to satellite data querying, analysis task submission, and result retrieval. Base URL: https://api.satrang.dev
Query available satellite scenes by bounding box, date range, and sensor type.
bboxstringrequiredBounding box as 'minLon,minLat,maxLon,maxLat'start_datestringrequiredStart of date range (YYYY-MM-DD)end_datestringrequiredEnd of date range (YYYY-MM-DD)sensorstringOne of: sentinel-2, sentinel-1, landsat-9 (default: all)cloud_covernumberMax cloud cover percentage (0–100, default: 20){
"scenes": [
{
"scene_id": "S2A_MSIL2A_20260301",
"sensor": "sentinel-2",
"date": "2026-03-01",
"cloud_cover": 3.2,
"bbox": [72.8, 18.9, 73.1, 19.2],
"thumbnail_url": "https://cdn.satrang.dev/thumbs/..."
}
],
"total": 12
}curl -X GET "https://api.satrang.dev/v1/scenes?bbox=72.8,18.9,73.1,19.2&start_date=2026-02-01&end_date=2026-03-01&sensor=sentinel-2" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Generate your API key from your Account Settings in the dashboard. Pass it as a Bearer token in the Authorization header on every request.