get_scan_history | Pendium MCP Docs | Pendium.ai
Pendium MCP Docs

get_scan_history

Get historical visibility scan scores to track trends and measure content impact.

Get historical visibility scan scores to track trends over time. Shows how the brand's AI visibility has changed across scans. Use this to measure the impact of content you've created.

Authentication: Required

Parameters

ParameterTypeRequiredDefaultDescription
syntheticIdintegerYesThe agent ID to get scan history for.
limitinteger (1–50)No10Number of historical scans to return.

Response

{
  "syntheticId": 1234,
  "brandName": "Example",
  "scanCount": 5,
  "latestScore": 78,
  "scoreChange": 6,
  "scoreTrend": "improving",
  "history": [
    {
      "scanId": 5678,
      "scanDate": "2026-03-20T12:00:00Z",
      "overallScore": 78,
      "visibilityLevel": "Good",
      "summary": "...",
      "platformScores": [...],
      "personaScores": [...],
      "topCompetitors": [...],
      "citedSources": [...],
      "queryAnalysis": [...]
    },
    {
      "scanId": 5672,
      "scanDate": "2026-03-13T12:00:00Z",
      "overallScore": 72,
      "visibilityLevel": "Moderate",
      "summary": "..."
    }
  ]
}

Key fields

FieldDescription
latestScoreMost recent overall visibility score (0–100)
scoreChangeDifference between the two most recent scans (positive = improving)
scoreTrend"improving", "declining", or "stable"
historyArray of scan summaries ordered newest-first

Each history entry includes platformScores, personaScores, topCompetitors, citedSources, and queryAnalysis for detailed trend analysis.

On this page