# MistTrack Address Action API

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

Retrieves blockchain address labels and risk/AML classification for a given coin and address

## Facts

- Endpoint: GET https://openapi.misttrack.io/x402/address_action
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/misttrack-address-action-api-f82c1b07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L40pEZEsFUiyO-ltu0CZy

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-action-api-f82c1b07
```

Example prompt: Can you check if this Ethereum address 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE has any AML risk flags or known labels on MistTrack?

## When to prefer this

Choose this endpoint when you need on-demand, per-address AML risk classification and entity labeling for a specific blockchain address across supported coins. It is ideal for compliance workflows, pre-transaction screening, fraud detection, or due diligence where you need MistTrack's proprietary risk intelligence database. Prefer this over generic blockchain explorers when you specifically need AML labels, risk scores, and illicit activity flags 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 with no transaction history may return no labels
- Rate limiting or payment failure via x402 protocol returns 402 Payment Required
- Address on a chain not yet indexed by MistTrack returns no data

## How this service works

Blockchain address labels and risk detection API with x402 payment protocol

## Output

Returns structured data about the blockchain address including entity labels (e.g. exchange, mixer, scam, darknet), risk classification, action flags indicating suspicious or illicit activity patterns, and AML risk indicators associated with the address on the specified blockchain.

## 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-action-api-f82c1b07/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)
