# MistTrack Address Labels API

> MistTrack Address Labels API is a paid API for AI agents from openapi.misttrack.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns blockchain address labels and AML risk information for a given coin/address pair

## Facts

- Endpoint: GET https://openapi.misttrack.io/x402/address_labels
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/misttrack-address-labels-api-52560b64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-x_Z2Oh7oKNstjpNsZwUh

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 misttrack-address-labels-api-52560b64
```

Example prompt: Check MistTrack to see what labels or risk flags exist for this Bitcoin address: 1A1zP1eP5QGefi2DMPTfTL5SLmv7Divf

## When to prefer this

Use this endpoint when you need authoritative blockchain address intelligence from MistTrack's AML database — especially for compliance screening, fraud investigation, or identifying whether a wallet belongs to a known exchange, mixer, darknet market, or sanctioned entity. Prefer this over generic blockchain explorers when you specifically need entity labels and risk classification rather than raw transaction data.

## Known failure modes

- Unknown address returns empty labels or no results — not all addresses are in MistTrack's database
- Invalid coin symbol causes a parameter error
- Unsupported blockchain/coin combination returns an error or empty response
- Address format mismatch for the specified coin (e.g. ETH address with BTC coin) returns an error
- Payment failure via x402 protocol blocks the request if USDC balance is insufficient

## How this service works

Blockchain address labels and risk detection API with x402 payment protocol

## Output

A structured response containing known labels for the queried blockchain address, entity name/type (e.g. exchange, mixer, darknet, sanction), risk classification, and associated AML risk flags or scores. May include multiple labels if the address is associated with more than one known entity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "coin",
  "address"
 ],
 "properties": {
  "coin": {
   "type": "string",
   "description": "Coin/token symbol"
  },
  "address": {
   "type": "string",
   "description": "Blockchain address to query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/misttrack-address-labels-api-52560b64/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from openapi.misttrack.io](https://www.zero.xyz/host/openapi.misttrack.io/llms.txt)
