# ESMA MiCA Token Registry Lookup

> ESMA MiCA Token Registry Lookup is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Checks whether a crypto-asset or its issuer is notified/registered under the EU MiCA regulation by searching the official ESMA interim register of EMT issuers, ART issuers, and notified white papers.

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/eu/token-registry
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/esma-mica-token-registry-lookup-d22372cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O-lDkzOOr62ea8EwyyGU-

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 esma-mica-token-registry-lookup-d22372cb -d '<json body>'
```

Example prompt: Can you check if Circle Internet Financial is registered under MiCA in the EU? I want to verify whether their EURC token is on the ESMA interim register — search by issuer name.

## When to prefer this

Use this endpoint when you need to verify whether a specific crypto-asset issuer or token is officially notified under EU MiCA regulation before trusting it in a financial workflow, accepting stablecoin payments, or performing compliance due diligence. Prefer this over generic web search when you need structured, authoritative regulatory data from the official ESMA interim register.

## Known failure modes

- No match found for the given issuer name, LEI, or DTI — returns empty results
- Issuer exists but is registered under a slightly different legal name — partial or no match
- ESMA register data may lag behind real-time regulatory updates
- Malformed or invalid LEI/DTI format causes lookup failure
- Network timeout to the upstream ESMA data source

## How this service works

Is this crypto-asset or its issuer MiCA-notified in the EU? Searches the official ESMA interim MiCA register token lists — e-money token (EMT) issuers, asset-referenced token (ART) issuers, and notified crypto-asset white papers — by issuer name, LEI, or Digital Token Identifier (DTI). Returns issuer, home member state, competent authority, DTIs and the official white-paper URL per match. Useful before trusting a stablecoin or token sold as EU-regulated.

## Output

Returns a list of matching entries from the ESMA MiCA interim register, each with issuer name, home EU member state, competent authority, associated Digital Token Identifiers (DTIs), token type (EMT or ART), and the official white paper URL if available. Returns empty results if no match is found.

## 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": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "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/esma-mica-token-registry-lookup-d22372cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
