# Mauritius Oracle SENTINEL Wallet Compliance Screening

> Mauritius Oracle SENTINEL Wallet Compliance Screening is a paid API for AI agents from mru-oracle.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Screens a blockchain wallet address for AML/CFT risk using 11-layer SENTINEL compliance checks, returning a risk rating and PROCEED/REVIEW recommendation.

## Facts

- Endpoint: POST https://mru-oracle.com/compliance/wallet
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mauritius-oracle-sentinel-wallet-compliance-screening-848516e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6S4IZe49w5hDyELnIS1xP

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 mauritius-oracle-sentinel-wallet-compliance-screening-848516e5 -d '<json body>'
```

Example prompt: Can you run an AML and sanctions check on this wallet address 0x1234abcd...efgh before I send funds to it? I need to know if it's flagged and whether it's safe to proceed.

## When to prefer this

Use this endpoint when you need a lightweight, per-call AML/CFT compliance check on a specific crypto wallet address before transacting, especially in contexts involving Mauritius regulatory frameworks or when you need SENTINEL's 11-layer screening with a low per-call cost of $0.001 USDC via x402 micropayments.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Unsupported blockchain network may result in no coverage data
- Missing required schema field causes a 400-level error
- Payment failure via x402 protocol prevents endpoint access
- Rate limiting or service downtime returns 5xx error

## How this service works

Sentinel AML Intelligence: screen blockchain wallet address against 12,997+ sanctioned/blacklisted crypto addresses (OFAC SDN, USDT Blacklist, USDC Blacklist, Ransomwhere, OpenSanctions, UK OFSI)

## Output

Returns a JSON object with the queried address and chain, a boolean hit flag, a risk rating (e.g. 'clear'), a list of any sanction matches, a compliance recommendation ('PROCEED' or similar), and coverage metadata showing how many networks and addresses were screened.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "schema": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": {
   "chain": "auto",
   "address": "0x1234ÃÂ¢ÃÂÃÂ¦"
  },
  "result": {
   "hit": false,
   "risk": "clear",
   "matches": [],
   "recommendation": "PROCEED"
  },
  "status": "ok",
  "coverage": {
   "networks": 29,
   "totalAddresses": 12997
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mauritius-oracle-sentinel-wallet-compliance-screening-848516e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mru-oracle.com](https://www.zero.xyz/host/mru-oracle.com/llms.txt)
