Skip to main content
GET
/
v1
/
monitoring
/
media-mentions
curl "https://api.vouchmark.com/v1/monitoring/media-mentions?riskTier=HIGH" \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": [
    {
      "eventId": "evt_aBcD...",
      "vendorId": "cmp_aBcD...",
      "vendorName": "TEKCIFY TECHNOLOGIES LTD",
      "riskTier": "HIGH",
      "claimStatus": "claimed",
      "score": 90,
      "hasAlerts": true,
      "severity": "HIGH",
      "agentName": "google-news",
      "headline": "Company under investigation for tax evasion",
      "source": "google-news",
      "url": "https://example.com/article/...",
      "sentiment": "negative",
      "whatChanged": "Adverse media mention detected",
      "createdAt": "2026-05-17T15:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "totalPages": 1
  }
}
Returns adverse media mentions and news events detected by Smart Sentinel across your monitored vendors.

Query parameters

riskTier
string
Filter by vendor risk tier: LOW, MEDIUM, HIGH, or CRITICAL.
claimStatus
string
Filter by claim status: claimed or unclaimed.
hasAlerts
boolean
Filter to vendors that have alerts (true) or have none (false).
page
integer
default:"1"
limit
integer
default:"20"
Max 100.
curl "https://api.vouchmark.com/v1/monitoring/media-mentions?riskTier=HIGH" \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": [
    {
      "eventId": "evt_aBcD...",
      "vendorId": "cmp_aBcD...",
      "vendorName": "TEKCIFY TECHNOLOGIES LTD",
      "riskTier": "HIGH",
      "claimStatus": "claimed",
      "score": 90,
      "hasAlerts": true,
      "severity": "HIGH",
      "agentName": "google-news",
      "headline": "Company under investigation for tax evasion",
      "source": "google-news",
      "url": "https://example.com/article/...",
      "sentiment": "negative",
      "whatChanged": "Adverse media mention detected",
      "createdAt": "2026-05-17T15:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "totalPages": 1
  }
}
riskTier, claimStatus, headline, source, url, sentiment, and whatChanged may be null or omitted depending on the detecting agent.