X Breaking Brand Risk Monitor
Pricing
from $0.32 / 1,000 actionable insights
X Breaking Brand Risk Monitor
Turn business entity records into ranked, evidence-backed actionable business signals.
X Breaking Brand Risk Monitor
Pricing
from $0.32 / 1,000 actionable insights
Turn business entity records into ranked, evidence-backed actionable business signals.
You can access the X Breaking Brand Risk Monitor programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "records": [12 {13 "id": "entity-demo-001",14 "name": "Demo Account",15 "status": "qualified",16 "category": "B2B SaaS",17 "value": 84,18 "score": 91,19 "rating": 4.7,20 "count": 128,21 "description": "New high-intent opportunity",22 "observedAt": "2026-08-02T10:00:00Z",23 "productWorkflow": "x-breaking-brand-risk-monitor"24 }25 ],26 "previousRecords": [27 {28 "id": "entity-demo-001",29 "name": "Demo Account",30 "status": "researching",31 "category": "B2B SaaS",32 "value": 61,33 "score": 67,34 "rating": 4.5,35 "count": 91,36 "description": "Early-stage account",37 "observedAt": "2026-07-02T10:00:00Z",38 "productWorkflow": "x-breaking-brand-risk-monitor"39 }40 ]41};42
43// Run the Actor and wait for it to finish44const run = await client.actor("night111/x-breaking-brand-risk-monitor").call(input);45
46// Fetch and print Actor results from the run's dataset (if any)47console.log('Results from dataset');48console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);49const { items } = await client.dataset(run.defaultDatasetId).listItems();50items.forEach((item) => {51 console.dir(item);52});53
54// ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use X Breaking Brand Risk Monitor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: