Customer portal System status Developers Contact Search
Support

Developer documentation

The ATLAS API, the SDKs, and everything else a developer needs.

Full reference documentation is hosted at docs.terravek.com. This page is the map.

Quick start

# Install the Python SDK
pip install terravek-atlas

# Authenticate (OAuth 2.0 client credentials)
export TERRAVEK_CLIENT_ID="your-client-id"
export TERRAVEK_CLIENT_SECRET="from-your-secret-manager"

# Search the catalogue
python -c "
from terravek import Atlas
atlas = Atlas()
for item in atlas.search(bbox=[4.2, 51.9, 4.5, 52.1], datetime='2026-06-01/2026-06-30'):
    print(item.id, item.properties['datetime'], item.properties['eo:cloud_cover'])
"

Never place a client secret in a front-end bundle, a repository or a shared account. See authenticating with the ATLAS API.

Base URLs

PurposeURL
APIhttps://api.terravek.com/v3/
Developer portalhttps://atlas.terravek.com/
Documentationhttps://docs.terravek.com/atlas/v3/
Identity (OIDC issuer)https://identity.terravek.com/
SAML metadatahttps://identity.terravek.com/saml/metadata
Statushttps://status.terravek.com/
Sourcehttps://github.com/terravek

Sandbox

The ATLAS Sandbox tier is free: 1,000 requests a day against a fixed 2024 sample catalogue, no commercial conversation required. It exists so that people can evaluate the API and so that universities can teach with it. Sign up at atlas.terravek.com.