# ScriptMasterLabs Wallet Analysis API

> ScriptMasterLabs Wallet Analysis API 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 given blockchain wallet address and returns crypto-related intelligence, risk, or activity data, settled via x402 micropayment on Base.

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/wallet-analysis
- 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-analysis-api-20252b61
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WO7l3mJW8481DKVvzX640

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-analysis-api-20252b61
```

Example prompt: Can you analyze the wallet 0xAbCd1234...5678 and tell me about its on-chain activity, any risk flags, and transaction history?

## When to prefer this

Choose this endpoint when you need fast, pay-per-call wallet intelligence without a subscription — ideal for one-off compliance checks, fraud investigation, or agent workflows that only occasionally need wallet data. At $0.001 USDC per call settled on Base via x402, it suits agentic pipelines with crypto-native payment capability. Prefer alternatives (e.g. Chainalysis, Nansen) if you need enterprise-grade SLAs, deep historical data, or guaranteed schema stability.

## Known failure modes

- Missing or invalid wallet address returns a 400 or error response
- Payment not settled via x402 results in a 402 Payment Required response
- Unsupported or non-EVM wallet format may return an empty or error result
- Render.com cold-start latency may cause timeouts on first request
- Sparse or brand-new wallets may return minimal data

## 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 on-chain analytics and intelligence for the queried wallet address, potentially including transaction history, token balances, risk indicators, activity patterns, and compliance flags. The exact response structure is loosely typed (schema shows an open example object), so field names may vary.

## 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-analysis-api-20252b61/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)
