APIs

ClientSDK Libraries

Under Development

Integrate the planetary computing engine into your favorite language environment using our open-source SDK modules.

Python client SDK (velstrom-sdk)

Use the command below to install the package, and the template to initialize your first planetary spatial computations.

Installation Command
bash
1pip install velstrom-sdk
Initialization Template Code
example_python.py
1import velstrom as vel
2
3# Initialize secure connection session
4session = vel.Session(api_key="YOUR_API_KEY")
5
6# Query Sentinel-2 multispectral imagery bounding box
7imagery_items = session.imagery.search(
8bbox=[-122.68, 45.51, -122.65, 45.53],
9platform="sentinel-2",
10date_range=("2026-05-01", "2026-06-01")
11)
12
13# Fetch index raster (NDVI) as in-memory numpy array
14raster = imagery_items[0].compute_index("NDVI")
15ndvi_array = raster.read()