# Wallet CEX Flows - CEX Attribution API

> Wallet CEX Flows - CEX Attribution API is a paid API for AI agents from wallet-cex-flows-mcp.mtree.workers.dev, paid per call via x402, $0.050000/call, status unknown (last checked 2026-09-14).

Attributes a crypto wallet address to a centralized exchange (CEX) by analyzing on-chain deposit flows and returning machine-readable attribution evidence

## Facts

- Endpoint: POST https://wallet-cex-flows-mcp.mtree.workers.dev/v1/wallet/cex_attribution
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wallet-cex-flows-cex-attribution-api-6e5ad89b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ydLvUBY-1wohLHX83EMKN

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 wallet-cex-flows-cex-attribution-api-6e5ad89b -d '<json body>'
```

Example prompt: Can you tell me which centralized exchange this wallet address 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE is associated with — like whether it's a Binance or Coinbase deposit address?

## When to prefer this

Use this endpoint when you need to determine which centralized exchange (CEX) a specific crypto wallet address is associated with, particularly for exchange deposit attribution, compliance checks, on-chain KYC enrichment, or understanding fund flows between wallets and exchanges. Prefer this over generic blockchain explorers when you need structured, machine-readable CEX attribution evidence with provenance.

## Known failure modes

- Wallet address not found or unattributable — returns null attribution or low-confidence result
- Invalid wallet address format — returns error
- Payment of 0.05 USDC on Base not completed — returns 402 Payment Required
- Rate limiting or quota exceeded — returns 429
- Wallet is a self-custodial or DeFi address with no CEX deposit linkage — returns no attribution

## How this service works

Paid wallet cex flows mcp route for autonomous agents. Returns JSON with provenance, route-specific evidence, and machine-readable fields. Buyer-intent match: exchange deposit attribution, cex attribution API. Price 0.05 USDC on Base via x402. Demo/preview: https://wallet-cex-flows-mcp.mtree.workers.dev/demo/cex_attribution. Contact: https://wallet-cex-flows-mcp.mtree.workers.dev/contact.

## Output

A JSON object containing the attributed centralized exchange name, route-specific on-chain deposit flow evidence, provenance metadata, and machine-readable confidence fields indicating which CEX the wallet is linked 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": {
      "chain": {
       "enum": [
        "ethereum",
        "base",
        "arbitrum",
        "optimism",
        "polygon"
       ],
       "type": "string",
       "default": "ethereum"
      },
      "address": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$"
      }
     },
     "additionalProperties": false
    },
    "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/wallet-cex-flows-cex-attribution-api-6e5ad89b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wallet-cex-flows-mcp.mtree.workers.dev](https://www.zero.xyz/host/wallet-cex-flows-mcp.mtree.workers.dev/llms.txt)
