Webhook Creation API

A webhook is an event-driven mechanism that facilitates the automatic, real-time delivery of signal data from SMARTe’s servers to your system. When a subscribed company experiences a trigger event, such as a key personnel change, product launch, or merger/acquisition, the webhook pushes the relevant signal data directly to your configured Webhook URL via an HTTP request.

NOTE****: Webhooks are triggered only for companies you Subscribe and are not enabled by default. To enable webhooks, please contact our Sales team.

Response parameters:

Field NameData TypeDescription
company_domainstringThe domain name of the company for which news events are being retrieved.
dataobjectTop‑level container holding response data.
data.news_eventsarray of objectsA list of individual news event records related to the company.
data.news_events[].idstringUnique identifier for this specific news event.
data.news_events[].titlestringHeadline or title of the news event.
data.news_events[].descriptionstringA brief summary or description of the news event.
data.news_events[].publishedDatestring (datetime)Timestamp when the event was published, in “YYYY‑MM‑DD HH:MM:SS” format (24‑hour clock).
data.news_events[].categorystringClassification of the news event (e.g., “Product Change”, “Funding”, “Partnership”).
data.news_events[].urlstringDirect link to the full news release or article.

Sample Webhook Response

Response

{
    "company_domain": "nividous.com ",
    "data": {
        "news_events": [
            {
                "id": "B1E5F3A4C2794017",
                "title": "ImageSource, Inc. announces 2025 predictions event with the Everest Group.",
                "description": "ImageSource, Inc. announces 2025 predictions event with the Everest Group..",
                "publishDate": "2024-11-29 16:00:00",
                "category": "Product Change",
                "url": "https://www.prnewswire.com/news-releases/imagesource-inc-announces-2025-predictions-event-with-the-everest-group-302316383.html"
            }
        ]
    }
}