# Suverse Wallet Label Lookup

> Suverse Wallet Label Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns entity-type labels (contract, CEX-deposit, market-maker, deployer, LP-actor, probable-bot) with evidence and confidence scores for any EVM or Solana wallet address.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/wallet-label-lookup
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-wallet-label-lookup-4ab337f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wtaXMvYTH1fLfa_aj25pL

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 suverse-wallet-label-lookup-4ab337f1 -d '<json body>'
```

Example prompt: Can you look up what kind of entity this wallet address is — 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE — I want to know if it's a CEX deposit, a bot, a market maker, or something else, along with how confident you are?

## When to prefer this

Choose this endpoint when you need fast, heuristic-based entity classification for individual EVM or Solana wallet addresses and want labeled categories (bot, CEX-deposit, market-maker, etc.) with confidence scores rather than raw transaction data. It is particularly suited for risk screening, compliance enrichment, and DeFi analytics pipelines where knowing the behavioral archetype of a counterparty wallet matters. Prefer this over on-chain data scrapers when you want pre-computed, human-readable labels with evidence rather than raw tx history.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unrecognized address format with no chain detected
- Low-confidence classification where evidence is sparse
- Address too new or low-activity to label reliably
- Network timeout or upstream heuristic engine unavailable
- Payment failure if USDC balance is insufficient (x402)

## How this service works

Entity label for any wallet from our labeler: contract / CEX-deposit / market-maker / deployer / LP-actor / probable-bot, with evidence + confidence. EVM or Solana address, chain auto-detected. In-house heuristic labels.

## Output

Returns an entity label (one of: contract, CEX-deposit, market-maker, deployer, LP-actor, probable-bot) along with a confidence score and supporting evidence for the classified wallet. Chain is auto-detected from the address format.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "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/suverse-wallet-label-lookup-4ab337f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
