# ScriptMasterLabs Wallet Analyzer

> ScriptMasterLabs Wallet Analyzer is a paid API for AI agents from acp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Analyzes a blockchain wallet address and returns crypto activity, risk, and compliance insights, paid per-call in USDC via x402.

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/wallet-analyzer
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-wallet-analyzer-88d61555
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h0_BVR_-5t2BFlh0YO7dT

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 scriptmasterlabs-wallet-analyzer-88d61555
```

Example prompt: Can you analyze the wallet 0xAbC1234567890000000000000000000000000001 and tell me about its transaction history, token holdings, and any risk or compliance flags?

## When to prefer this

Choose this endpoint when you need a pay-per-use, per-wallet on-chain analysis with no subscription required, settled in USDC on Base. It is well-suited for agents that need to screen wallets on demand for compliance, risk, or due diligence purposes, especially in DeFi or crypto-native workflows.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet with no on-chain activity may return empty or minimal results
- Payment failure via x402 (insufficient USDC balance) blocks the call
- Rate limiting or server errors from the hosted Render deployment
- Response schema is currently undocumented (returns opaque example object), so output structure may be inconsistent

## How this service works

Pay-per-call crypto, RWA, federal, SEC, and compliance APIs. Settled in USDC on Base via x402. Hyphen routes only (e.g. /x402/rwa-aggregates, /x402/gas-tracker).

## Output

Returns a structured analysis of the given wallet address, likely including transaction history, token balances, activity patterns, risk scores, and compliance or AML signals derived from on-chain data.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "wallet": {
       "type": "string",
       "example": "0x0000000000000000000000000000000000000000"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-wallet-analyzer-88d61555/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-discovery.onrender.com](https://www.zero.xyz/host/acp-x402-discovery.onrender.com/llms.txt)
