Satellite to Screen
Stream high-resolution imagery into your apps with a single integration. Track global events in near real time with zero latency.
Scanning...
Live Intelligence FeedAnalyze the live planet, with natural language.
24/7
Live Ingestion
15M+
Daily Events
0.4s
Latency
Try it
Click a query to see real similarity-search results.
Demo shows pre-captured results. Sign up for our Alpha to run your own queries on live imagery.
Features
Stream high-resolution imagery into your apps with a single integration. Track global events in near real time with zero latency.
Forecast environmental trends before they impact your operations using our proprietary ML models.
Instant notifications for critical changes in your area of interest, from wildfires to infrastructure shifts.
One JSON REST endpoint. Send a natural-language query, get ranked tile matches back. Same API that powers our own dashboard.
API Documentation
The dashboard runs on the same API you do. Send a natural-language query, get ranked tile matches back with coordinates, year, and a relevance score.
# Search the imagery archive
curl https://portal.terrabyte.ai/api/search \
-H "Content-Type: application/json" \
-b "better-auth.session_token=$TOKEN" \
-d '{ "text": "oil storage tanks", "top_k": 50 }'
# Response
{
"points": [
{
"id": "dfw-2022-0142",
"lat": 32.7831,
"lon": -96.8067,
"score": 0.74,
"year": 2022
}
]
}
FAQ
TerraByte is an Earth search engine that lets you query live satellite imagery and global event streams using natural language. It combines real-time geospatial ingestion, predictive AI, and developer APIs in one platform — so a question like "where are oil storage tanks near this port?" returns ranked imagery matches instead of requiring a specialist analyst and a stack of tools.
TerraByte exposes a JSON REST API at
https://portal.terrabyte.ai/api. POST /api/search
accepts a natural-language query and returns ranked tile matches with
latitude, longitude, year, and a relevance score. Authentication is via
a signed-in session today; partner bearer tokens are issued during
onboarding. Anything that speaks HTTP and JSON can consume it directly —
no SDK required.
TerraByte ingests over 15 million events per day across categories including wildfires, storms, infrastructure changes, and environmental shifts, with roughly 0.4-second latency from satellite to API.
Anything that speaks HTTP and JSON can consume the TerraByte API
directly. The portal exposes the same endpoints the dashboard uses, so
curl, Python's requests, fetch from a browser,
or any HTTP client works out of the box.
Request early access by emailing info@terrabyte.ai, or try the research Alpha. Production API keys and dashboards are provisioned during onboarding.