# LimitGuard Wallet Balance Check

> LimitGuard Wallet Balance Check is a paid API for AI agents from api.limitguard.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns the USDC balance and transaction count for an ERC-8004 AI agent wallet by agent identifier.

## Facts

- Endpoint: GET https://api.limitguard.ai/v1/wallet/balance
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/limitguard-wallet-balance-check-e4943eef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SNdkdHSwIKaPBPek4jzqA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability limitguard-wallet-balance-check-e4943eef
```

Example prompt: Can you check the current USDC balance and transaction count for AI agent wallet agent-0xabc123 using LimitGuard?

## When to prefer this

Use this endpoint when you need to quickly check an AI agent wallet's USDC balance and transaction history count before authorizing inter-agent payments, delegating tasks, or assessing agent financial activity. Prefer this over full compliance or trust-score endpoints when only balance/transaction data is needed and you want a lightweight, low-cost check.

## Known failure modes

- Invalid or unknown agent_id returns an error or empty result
- Agent wallet not yet registered in ERC-8004 registry returns not-found error
- Network or provider outage causes timeout
- Malformed agent_id format causes validation error
- Insufficient payment (x402) causes 402 Payment Required response

## How this service works

ERC-8004 agent wallet balance check. Returns USDC balance and transaction count for AI agent wallets.

## Output

Returns a JSON object containing the agent wallet's current USDC balance (e.g. 150.5 USDC) and the total number of transactions the wallet has made (e.g. 42).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "note": {
   "type": "string"
  },
  "input": {
   "type": "object",
   "$schema": "https://json-schema.org/draft/2020-12/schema",
   "required": [
    "agent_id"
   ],
   "properties": {
    "agent_id": {
     "type": "string",
     "description": "ERC-8004 agent identifier"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "sandbox": {
   "type": "object",
   "required": [
    "url"
   ],
   "properties": {
    "url": {
     "type": "string"
    },
    "curl": {
     "type": "string"
    },
    "note": {
     "type": "string"
    }
   }
  },
  "recovery": {
   "type": "object",
   "required": [
    "url"
   ],
   "properties": {
    "url": {
     "type": "string"
    },
    "curl": {
     "type": "string"
    }
   }
  },
  "documentation_url": {
   "type": "string"
  },
  "cachedTierAvailable": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "balance_usdc": 150.5,
  "transaction_count": 42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/limitguard-wallet-balance-check-e4943eef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.limitguard.ai](https://www.zero.xyz/host/api.limitguard.ai/llms.txt)
