# MiCA Non-Compliant Entities Register

> MiCA Non-Compliant Entities Register is a paid API for AI agents from api.micacheck.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a list of crypto-asset entities publicly flagged as non-compliant under EU MiCA regulation by national competent authorities, optionally filtered by EU member state.

## Facts

- Endpoint: GET https://api.micacheck.workers.dev/noncompliant
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mica-non-compliant-entities-register-59803943
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ST7q1JP78APlSI_Mpt1rE

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 mica-non-compliant-entities-register-59803943
```

Example prompt: Can you pull the current list of crypto entities flagged as non-compliant under MiCA by EU regulators — specifically for Italy?

## When to prefer this

Use this endpoint when you need authoritative, ESMA-sourced data on MiCA non-compliant crypto entities in the EU, particularly for compliance screening, regulatory due diligence, or enforcement monitoring. It is the only endpoint dedicated specifically to the non-compliant side of the MiCA register (as opposed to the sibling endpoint which checks authorized/compliant status). Prefer this over general web searches when you need structured, machine-readable regulatory enforcement data with decision dates and LEI identifiers.

## Known failure modes

- Invalid country code returns empty results or 400 error
- Data may lag up to one week behind ESMA publications due to weekly release cadence
- Entities recently added by ESMA may not appear if daily refresh has not yet run
- No entities found for a given country returns count:0 and empty entities array
- Rate limiting or payment failure returns 402 Payment Required

## How this service works

Lists entities publicly flagged as non-compliant under MiCA by EU national competent authorities. Query parameter: country (string, optional; 2-letter EU member-state code, e.g. IT). JSON response: count (number) and entities[] with legal_name, commercial_name, lei, home_member_state, competent_authority, website, infringement, reason, decision_date (ISO date), record_updated. Data source: ESMA Interim MiCA Register, official EU data; refreshed daily from weekly ESMA publications.

## Output

A JSON object containing a count of non-compliant entities and an array of entity records, each with legal name, commercial name, LEI identifier, home EU member state, the competent authority that flagged them, their website, the specific infringement type, the reason for the decision, the ISO-formatted decision date, and the date the record was last updated. Data is refreshed daily from weekly ESMA publications.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/mica-non-compliant-entities-register-59803943/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.micacheck.workers.dev](https://www.zero.xyz/host/api.micacheck.workers.dev/llms.txt)
