# MistTrack Address Overview

> MistTrack Address Overview 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).

Returns blockchain address labels, risk scores, and AML classification for a given crypto address and coin/token

## Facts

- Endpoint: GET https://openapi.misttrack.io/x402/address_overview
- 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-overview-3e09648c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0JCDemV2kZ2ax14EvW0ZZ

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-overview-3e09648c
```

Example prompt: Can you check if this Bitcoin address 1A1zP1eP5QGefi2DMPTfTL5SLmv7Divf6N is risky or associated with any known illicit activity using MistTrack?

## When to prefer this

Choose this endpoint when you need blockchain-specific AML screening, address labeling, and risk classification for compliance or due diligence workflows. It is especially valuable for crypto businesses, compliance officers, or agents that need to vet wallet addresses before processing transactions. MistTrack specializes in crypto forensics and has extensive labeled address databases across multiple chains.

## Known failure modes

- Invalid or unsupported coin symbol returns an error
- Malformed blockchain address returns validation error
- Address not found in MistTrack database may return empty labels with a default low-risk score
- Payment failure via x402 protocol results in 402 status and no data returned
- Rate limiting or quota exceeded may block requests

## How this service works

Blockchain address labels and risk detection API with x402 payment protocol

## Output

Returns a structured overview of the queried blockchain address including risk score, risk level classification, associated labels (e.g. exchange, mixer, darknet, scam), and any flagged entity information useful for AML compliance and due diligence.

## 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-overview-3e09648c/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)
