# Crypto Wallet Address Classifier

> Crypto Wallet Address Classifier is a paid API for AI agents from wallet.openverbs.com, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Detects and classifies the blockchain network of a given crypto wallet address string

## Facts

- Endpoint: POST https://wallet.openverbs.com/v1/detect
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-wallet-address-classifier-29ecaf41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i84v_vapyXRWjFl20I-BS

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 crypto-wallet-address-classifier-29ecaf41 -d '<json body>'
```

Example prompt: Can you figure out which blockchain network this wallet address belongs to: '0x71C7656EC7ab88b098defB751B7401B5f6d8976F'?

## When to prefer this

Use this endpoint when you need to programmatically determine which blockchain network a wallet address belongs to before routing a payment, validating user input, or enriching transaction data. Prefer this over manual regex checks when you need to handle many different chain formats reliably at scale.

## Known failure modes

- Address string is empty or exceeds 120 characters — returns validation error
- Address format is unrecognized or ambiguous — may return low-confidence or unknown classification
- Malformed JSON body or missing required 'address' field — returns 400 bad request
- Network timeout or service unavailability — returns 5xx error

## How this service works

Guess which chain an address belongs to from its shape and encoding, without requiring the caller to know it up front. Returns the chain, format and address type, or nulls when nothing matches.

## Output

Returns the detected blockchain network and address type classification for the submitted wallet address string, indicating which cryptocurrency chain (e.g. Bitcoin, Ethereum, Tron, Solana) the address belongs to.

## 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": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "maxLength": 120,
       "minLength": 1,
       "description": "The address to classify."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-wallet-address-classifier-29ecaf41/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wallet.openverbs.com](https://www.zero.xyz/host/wallet.openverbs.com/llms.txt)
