Developer Platform

APIs & SDKs

Production-ready REST APIs for satellite imagery, environmental indices, and terrain data. Authenticate once and access the full VELSTROM geospatial stack.

quickstart.py
python
from velstrom import Client

# Authenticate with your API key
client = Client(api_key="vstrm_...")

# Fetch NDVI for a bounding box
ndvi = client.indices.ndvi(
    bbox=[72.8, 18.9, 72.9, 19.0],
    date="2026-05-01"
)