> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vouchmark.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Media mentions

> News and media mentions detected across all monitored vendors.

Returns adverse media mentions and news events detected by Smart Sentinel across your monitored vendors.

## Query parameters

<ParamField query="riskTier" type="string">
  Filter by vendor risk tier: `LOW`, `MEDIUM`, `HIGH`, or `CRITICAL`.
</ParamField>

<ParamField query="claimStatus" type="string">
  Filter by claim status: `claimed` or `unclaimed`.
</ParamField>

<ParamField query="hasAlerts" type="boolean">
  Filter to vendors that have alerts (`true`) or have none (`false`).
</ParamField>

<ParamField query="page" type="integer" default="1" />

<ParamField query="limit" type="integer" default="20">
  Max 100.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.vouchmark.com/v1/monitoring/media-mentions?riskTier=HIGH" \
    -H "Authorization: Bearer $TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "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
    }
  }
  ```
</ResponseExample>

`riskTier`, `claimStatus`, `headline`, `source`, `url`, `sentiment`, and `whatChanged` may be `null` or omitted depending on the detecting agent.
