# USDT Banlist Address Label Lookup

> USDT Banlist Address Label Lookup is a paid API for AI agents from mcp.usdtbanlist.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns entity labels and metadata for a blockchain address, including exchange name, protocol, contract type, and category.

## Facts

- Endpoint: POST https://mcp.usdtbanlist.com/x402/label
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/usdt-banlist-address-label-lookup-454c44c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ROkTKQFPUCablJYvw9EQ4

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 usdt-banlist-address-label-lookup-454c44c9 -d '<json body>'
```

Example prompt: Can you label the address 0xdAC17F958D2ee523a2206206994597C13D831ec7 and tell me which exchange or protocol it belongs to, its contract type, and category?

## When to prefer this

Use this endpoint when you need fast, lightweight entity labeling for a blockchain address — specifically to identify exchange ownership, protocol association, contract type, or category. Prefer this over the sibling deep AML risk endpoint when you only need metadata and labels rather than a full risk score and fund flow analysis.

## Known failure modes

- Address not found in database — returns empty or null label fields
- Malformed address input — returns validation error
- Network or upstream timeout — returns 5xx error
- Unrecognized address format — returns 400 bad request
- Payment failure via x402 protocol — returns 402 Payment Required

## How this service works

Get address labels and entity information — exchange name, protocol, contract type, category.

## Output

Returns structured entity information for the queried blockchain address, including the exchange name (if applicable), protocol, contract type, and category label — useful for enriching AML workflows or understanding the identity of an on-chain address.

## 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"
     ],
     "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/usdt-banlist-address-label-lookup-454c44c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.usdtbanlist.com](https://www.zero.xyz/host/mcp.usdtbanlist.com/llms.txt)
