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 Name | Data Type | Description |
---|---|---|
company_domain | string | The domain name of the company for which news events are being retrieved. |
data | object | Top‑level container holding response data. |
data.news_events | array of objects | A list of individual news event records related to the company. |
data.news_events[].id | string | Unique identifier for this specific news event. |
data.news_events[].title | string | Headline or title of the news event. |
data.news_events[].description | string | A brief summary or description of the news event. |
data.news_events[].publishDate | string (datetime) | Timestamp when the event was published, in “YYYY‑MM‑DD HH:MM:SS” format (24‑hour clock). |
data.news_events[].category | string | Classification of the news event (e.g., “Product Change”, “Funding”, “Partnership”). |
data.news_events[].url | string | Direct 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"
}
]
}
}