# Jarvis X402 Wallet Analyzer

> Jarvis X402 Wallet Analyzer is a paid API for AI agents from api.jarvis-x402.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Analyzes a crypto wallet address on multiple blockchains, returning balance, recent transactions, active tokens, and spam/phishing token detection.

## Facts

- Endpoint: POST https://api.jarvis-x402.com/analizar-wallet-pago
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jarvis-x402-wallet-analyzer-a116cce2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z7j4qt3ihSENrPeRYcAg4

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 jarvis-x402-wallet-analyzer-a116cce2 -d '<json body>'
```

Example prompt: Can you analyze this Ethereum wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e — show me the balance, recent transactions, and flag any spam or phishing tokens?

## When to prefer this

Use this endpoint when you need a multi-chain wallet analysis that combines balance, transaction history, token activity, and spam/phishing detection in a single call. Prefer it over raw blockchain RPC calls when you want structured, pre-processed output with fraud signal detection across Ethereum, Base, Arbitrum, Optimism, Polygon, Bitcoin, and Solana.

## Known failure modes

- Invalid wallet address format for the selected network returns an error
- Unsupported network value outside the enum causes a validation error
- Rate limiting or node unavailability for a specific chain may cause timeouts
- Network congestion or RPC issues may result in incomplete transaction history
- Newly created wallets with zero activity may return empty results

## How this service works

Analiza una wallet: saldo, transacciones recientes, tokens con movimiento y puntuacion de riesgo (basada en marcas de scam de contrapartes y tokens). Soporta Ethereum, Base, Arbitrum, Optimism, Polygon, Bitcoin y Solana.

## Output

Returns the wallet's current balance, a list of recent transactions, tokens with recent movement, and a classification of any detected spam or phishing tokens across the queried blockchain network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "direccion",
      "red"
     ],
     "properties": {
      "red": {
       "enum": [
        "ethereum",
        "base",
        "arbitrum",
        "optimism",
        "polygon",
        "bitcoin",
        "solana"
       ],
       "type": "string",
       "description": "Red blockchain a consultar"
      },
      "direccion": {
       "type": "string",
       "description": "Direccion de la wallet (0x... para EVM, o formato nativo de Bitcoin/Solana)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jarvis-x402-wallet-analyzer-a116cce2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.jarvis-x402.com](https://www.zero.xyz/host/api.jarvis-x402.com/llms.txt)
