# VASP/CASP MiCA Authorization Verifier

> VASP/CASP MiCA Authorization Verifier is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-15).

Checks whether a crypto-asset service provider (CASP/VASP) is authorized under EU MiCA regulation by searching ESMA's official register

## Facts

- Endpoint: GET https://api.strale.io/x402/vasp-verify
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-920b9daf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NYxX6PzIJrDLvpGiZKUSP

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 api-strale-io-920b9daf
```

Example prompt: Can you check whether Bitstamp is authorized under EU MiCA regulation — I want to know its authorization status, what services it's licensed for, its home country, and whether it has passporting rights?

## When to prefer this

Use this endpoint when you need to verify a crypto company's regulatory standing under the EU Markets in Crypto-Assets (MiCA) framework, specifically whether they are on ESMA's official CASP register. Prefer this over generic company lookup endpoints when the question is specifically about MiCA authorization, passporting rights, or EU-licensed crypto services.

## Known failure modes

- Entity not found in ESMA register — returns no match or empty result
- Ambiguous entity name matching multiple entries — may return multiple candidates
- ESMA register temporarily unavailable — upstream data source error
- Missing required entity_name parameter — returns validation error
- LEI format invalid — returns bad request error

## How this service works

Check if a crypto-asset service provider (CASP/VASP) is authorized under the EU MiCA regulation. Searches ESMA's official register of authorized CASPs. Returns authorization status, licensed services, home country, and passporting rights.

## Output

Returns whether the entity is authorized under MiCA, the list of licensed crypto-asset services, the home member state, and any EU passporting rights. Sourced from ESMA's official CASP register.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "entity_name"
     ],
     "properties": {
      "lei": {
       "type": "string",
       "description": "Legal Entity Identifier (optional)"
      },
      "website": {
       "type": "string",
       "description": "Entity website domain (optional)"
      },
      "entity_name": {
       "type": "string",
       "description": "Company or entity name to search for"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-920b9daf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
