# MistTrack Address Trace - Blockchain AML Risk API

> MistTrack Address Trace - Blockchain AML Risk API is a paid API for AI agents from openapi.misttrack.io, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Traces a blockchain address to retrieve labels, risk scores, and AML-relevant metadata for crypto compliance and fraud detection

## Facts

- Endpoint: GET https://openapi.misttrack.io/x402/address_trace
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/misttrack-address-trace-blockchain-aml-risk-api-393893f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nDDc6-cvhp0T3LQBfW09t

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-trace-blockchain-aml-risk-api-393893f0
```

Example prompt: Can you check the MistTrack AML risk on this Ethereum address 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE and tell me if it's flagged, what labels it has, and what its risk score is?

## When to prefer this

Choose this endpoint when you need on-chain AML risk assessment and entity labeling for a specific blockchain address, particularly for compliance workflows, fraud investigation, or pre-transaction screening. MistTrack is especially strong for EVM chains, Bitcoin, and Tron. Prefer this over generic blockchain explorers when you need structured risk scores and entity classification rather than raw transaction data.

## Known failure modes

- Unsupported coin symbol returns an error or empty result
- Invalid or malformed blockchain address returns a validation error
- Address has no on-chain history and returns no labels
- Rate limiting or payment failure via x402 protocol blocks the request
- Network-specific address format mismatch (e.g. wrong chain for the coin)

## How this service works

Blockchain address labels and risk detection API with x402 payment protocol

## Output

Returns address labels (e.g. exchange, mixer, darknet, sanctioned entity), risk classification scores, associated entity names, and AML risk indicators for the queried blockchain address and coin pair

## 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-trace-blockchain-aml-risk-api-393893f0/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)
