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.
Set your search criteria once and receive instant notifications when new, relevant content appears on the web.
Define exactly what you're looking for with our advanced query language. No noise, just the updates that matter.
Seamlessly integrate with your workflow. Receive updates directly to your endpoints in real-time.
// 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"
}
]
}