get_account | Pendium MCP Docs | Pendium.ai
Pendium MCP Docs

get_account

Get your Pendium account info — credit balance, plan tier, and all brand agents with latest scores.

Get your Pendium account info: credit balance, plan tier, and all your brand agents with their latest scores. This is the best starting point when connecting a new agent — it shows you what's available.

Authentication: Required

Parameters

None.

Response

{
  "plan": "starter",
  "creditBalance": 45,
  "agentCount": 3,
  "agents": [
    {
      "syntheticId": 1234,
      "name": "Example",
      "website": "https://example.com",
      "lastScanDate": "2026-03-20T12:00:00Z",
      "latestScore": 72
    },
    {
      "syntheticId": 1235,
      "name": "OtherBrand",
      "website": "https://otherbrand.com",
      "lastScanDate": "2026-03-18T08:00:00Z",
      "latestScore": 58
    }
  ],
  "upgradeUrl": "https://pendium.ai/pricing"
}

Key fields

FieldDescription
planCurrent plan: "free", "starter", or "pro"
creditBalanceRemaining credits. A warning appears when balance ≤ 5.
agentsAll brand agents owned by this account
agents[].syntheticIdThe agent ID used in all other tool calls
agents[].latestScoreMost recent visibility score (0–100), or null if no scan

Common use

Call get_account first to discover your syntheticId values, then pass them to other tools like scan_visibility, get_report, or get_brand_voice.

On this page