1. Webhook Support
NEWS API
  • News API - Introduction
  • Authentication, Request & Response
  • Code Samples & API Trial
  • List of APIs
  • Single company News
    • Single Company News
      GET
  • Multi-company news
    • Multi-Company News
      GET
  • General News
    • General News
      GET
  • Webhook Support
    • Webhook
  • Glossary
    • Glossary
  • Diagnostic API Responses
    • Diagnostic API Responses
  1. Webhook Support

Webhook

Webhooks allow you to receive real-time notifications when new financial news articles are published.
Instead of repeatedly polling the API for updates, your application can register a webhook endpoint to
receive automatic notifications.

🔹 Step 1: News API Server#

The News API server acts as the source of financial news data. Whenever a new article is published or updated,
it automatically triggers a webhook event.
Includes:
  • Title
  • Summary
  • Sentiment
  • Other metadata

🔹 Step 2: Client Webhook URL (Receiver)#

The client must provide a secure (HTTPS) webhook endpoint to receive real-time updates.
The server sends an HTTP POST request whenever a new article is published.
✔ Requirements:
  • Accept JSON payload
  • Respond within a few seconds
  • Return HTTP 200 status
POST /webhook/news
Content-Type: application/json

🔹 Step 3: Client Application#

Once the webhook is received, the client application processes the data.
  • Store in database
  • Display on dashboard
  • Trigger alerts
  • Integrate with other systems

👉 This flow ensures secure and real-time delivery of financial news updates
from the News API server to the client application.
Please download the complete documentation to learn more about webhook support.
👉Download Webhook Documentation
Modified at 2026-04-07 11:36:21
Previous
General News
Next
Glossary
Built with