✨ NOW AVAILABLE

The Update Layer
for the Web

Exa is a search engine built from scratch. Today we're exposing our "update" layer. Simply define what to find and how often — Monitors will return any new information, via webhook.

Real-Time Monitoring

Set your search criteria once and receive instant notifications when new, relevant content appears on the web.

🎯

Precision Targeting

Define exactly what you're looking for with our advanced query language. No noise, just the updates that matter.

🔗

Webhook Integration

Seamlessly integrate with your workflow. Receive updates directly to your endpoints in real-time.

Simple. Powerful.

// Create a monitor
const monitor = await exa.createMonitor({
  "query": "AI breakthroughs in 2026",
  "frequency": "daily",
  "webhook": "https://api.yourapp.com/updates"
});

// Receive updates automatically
POST https://api.yourapp.com/updates
{
  "monitor_id": "mon_abc123",
  "results": [
    {
      "title": "New breakthrough in quantum computing",
      "url": "https://...",
      "published": "2026-04-08"
    }
  ]
}