Create a region
/v1/regions Bearer API keyDefine a geographic area of interest that missions, imagery searches, and analyses operate against.
A region is the spatial anchor for everything on the platform. Supply a GeoJSON geometry and a friendly name; the region id it returns is referenced by missions, imagery searches, and analysis jobs. Regions are reusable across many missions.
Request body
namerequiredstringHuman-readable label for the region.
geometryrequiredGeoJSONA GeoJSON Polygon or MultiPolygon describing the area of interest.
tagsoptionalstring[]Optional labels for organizing regions in a workspace.
Response fields
idoptionalstringUnique region identifier, e.g. reg_central_valley.
nameoptionalstringThe label you supplied.
area_km2optionalnumberComputed area of the region in square kilometers.
created_atoptionaltimestampISO 8601 creation time.
curl -X POST https://api.satellitex.ai/v1/regions \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Central Valley",
"geometry": { "type": "Polygon", "coordinates": [[[-121.8,36.9],[-119.9,36.9],[-119.9,38.4],[-121.8,38.4],[-121.8,36.9]]] }
}'Illustrative API — keys and identifiers are for demonstration.
Ready to build with this?
Request access and we'll help you scope your first mission and provision API keys.