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. Request access 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
}
]
}