# Strale VASP Verify

> Strale VASP Verify 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).

Verify whether a company or entity is a registered Virtual Asset Service Provider (VASP) by name, LEI, or website domain

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/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/strale-vasp-verify-e1e148dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y6F3lSyI1-MoZ95dg1Vey

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 strale-vasp-verify-e1e148dd
```

Example prompt: Can you check if Coinbase is a registered VASP — search by name 'Coinbase' and also try their website domain coinbase.com to confirm their compliance status?

## When to prefer this

Use this endpoint when you need to verify the VASP regulatory status of a crypto or virtual asset business during KYC/AML onboarding, counterparty due diligence, or compliance workflows. Prefer this over general company lookup endpoints when the specific question is about virtual asset regulation. The cryptographic audit trail makes it suitable for compliance documentation where verifiability matters.

## Known failure modes

- Entity not found in VASP registry — returns no match or empty result
- Invalid LEI format — returns validation error
- Ambiguous entity name with multiple matches — may return multiple candidates or require disambiguation
- Network or upstream registry timeout — returns error response
- Entity exists but is not registered as a VASP — returns unregistered status

## 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 VASP registration details for the queried entity, including registration status, country of registration, licensing authority, and a cryptographically hashed audit record confirming the result's integrity and provenance.

## Request schema (JSON Schema)

```json
{
 "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"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "matches": {
  "type": "array"
 },
 "authorized": {
  "type": "boolean"
 },
 "match_found": {
  "type": "boolean"
 },
 "entity_name_searched": {
  "type": "string"
 },
 "register_last_updated": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-vasp-verify-e1e148dd/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)
