# Strale VASP Non-Compliant Check

> Strale VASP Non-Compliant Check 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 company or entity is flagged as a non-compliant Virtual Asset Service Provider (VASP) across monitored watchlists or databases

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/vasp-non-compliant-check
- 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-non-compliant-check-28c1a626
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IgZayINCdDlegFazWSpWC

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-non-compliant-check-28c1a626
```

Example prompt: Can you check if 'CryptoNova Exchange' is flagged as a non-compliant VASP? Their website is cryptonovaex.com.

## When to prefer this

Use this endpoint when you need to screen a crypto company or virtual asset service provider for regulatory non-compliance before onboarding, transacting, or partnering. It is purpose-built for VASP-specific compliance checks with cryptographic audit trails, making it suitable for regulated environments requiring provable due diligence records. Prefer this over generic company lookup endpoints when the specific concern is VASP regulatory standing.

## Known failure modes

- Missing required entity_name parameter returns a validation error
- Unknown or unrecognized entity may return no match rather than a definitive clear status
- Website parameter mismatch with entity name may produce ambiguous results
- Rate limiting or payment failure (x402) prevents the call from completing
- Entity name variations or aliases may cause missed matches

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns whether the named entity is identified as a non-compliant VASP, along with supporting details about the flag status and a cryptographically hashed audit record for traceability.

## 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": {
      "website": {
       "type": "string",
       "description": "Entity website (optional)"
      },
      "entity_name": {
       "type": "string",
       "description": "Company or entity name to check"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-vasp-non-compliant-check-28c1a626/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)
