NEWS-HOOK
A Webhook on the Real-World
News-Hook is a prompt-based alert system that lets you set up alerts using just natural language
You define what you're looking for in plain English
We monitor the world for when it happens
Then send the alert via HTTP requests
Our API is well-documented and can be seamlessly integrated into your platforms, workflows, or applications.
"Alert me on any change on tariffs between USA and Brazil"
"Inform me when [movie-name] gets a release date"
"Tell me if [rumor] is either confirmed or denied"
REQUEST
{ "prompt": "Inform me on any news about a new Top-Gun movie", "http_method": "POST", "http_url": "https://your-api.com/webhook", "http_headers": { "Content-Type": "application/json", "X-API-Key": "your-api-key" }, "is_recurring": true, "llm_model": "gemini-2.5-pro-preview-05-06", "payload_format": { "properties": { "title": { "maxLength": 63, "title": "Title", "type": "string" }, "content": { "maxLength": 2047, "title": "Content", "type": "string" } }, "required": [ "title", "content" ], "title": "NewsAlertCreateRequest", "type": "object" }, "max_datetime": "2025-12-31T23:59:59.000Z" }
RESPONSE
{ "id": "123e4567-e89b-12d3-a456-426614174000", "prompt": "Inform me on any updates on a next Top-Gun movie", "reason": "It's plausible a new Top-Gun movie is in works", "created_at": "2025-06-01T12:00:00.000Z", "keywords": [ "top-gun", "movie", "announcement" ] }