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. Sign up for our Alpha 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
    }
  ]
}

FAQ

Common questions

What is TerraByte AI?

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.

How does the TerraByte API work?

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.

What kind of events does TerraByte detect?

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.

Which languages and SDKs are supported?

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.

How do I get access to TerraByte?

Request early access by emailing info@terrabyte.ai, or try the research Alpha. Production API keys and dashboards are provisioned during onboarding.