Scanning...

Live Intelligence Feed

The Earth
Search Engine

Analyze the live planet, with natural language.

24/7

Live Ingestion

15M+

Daily Events

0.4s

Latency

Try it

Search Earth in plain English.

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

Satellite intelligence, redefined.

🛰️

Satellite to Screen

Stream high-resolution imagery into your apps with a single integration. Track global events in near real time with zero latency.

📈

Predictive AI

Forecast environmental trends before they impact your operations using our proprietary ML models.

Real-time Alerts

Instant notifications for critical changes in your area of interest, from wildfires to infrastructure shifts.

💻

Built for Developers

One JSON REST endpoint. Send a natural-language query, get ranked tile matches back. Same API that powers our own dashboard.

API Documentation

One JSON endpoint. Any HTTP client.

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.

  • Natural-language search across the imagery archive
  • Ranked results with lat/lon, year, and score
  • Cookie auth today, partner bearer tokens on request
# 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
    }
  ]
}