# Mauritius Oracle SENTINEL Network Scan

> Mauritius Oracle SENTINEL Network Scan is a paid API for AI agents from mru-oracle.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Performs a blockchain network graph scan on a wallet or transaction, returning node/edge risk topology with AML/CFT risk scoring via SENTINEL's 11-layer screening engine.

## Facts

- Endpoint: POST https://mru-oracle.com/intelligence/network-scan
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mauritius-oracle-sentinel-network-scan-25022bd8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K3Ca1Wy7Zcsd8QsqD38V-

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-network-scan-25022bd8 -d '<json body>'
```

Example prompt: Run a SENTINEL network scan on wallet 0x1a2b3c4d... and tell me the network risk level, how many nodes and edges were flagged, and what the max risk node score is.

## When to prefer this

Use this endpoint when you need a graph-topology-based AML/CFT risk assessment of a blockchain address, specifically when you need node/edge relationship data rather than a simple wallet score. Ideal for compliance workflows requiring SENTINEL's 11-layer screening with network traversal context, especially for Mauritius-regulated financial entities or agents performing pre-transaction due diligence on Base/USDC flows.

## Known failure modes

- Missing or malformed schema input returns validation error
- Wallet address not found on supported chain returns empty nodes/edges with status ok
- Payment failure via x402 (insufficient USDC balance) blocks request
- Rate limiting if too many calls in quick succession
- Unsupported blockchain network schema returns error

## How this service works

Integrate x402 USDC payments on Base with SENTINEL's 11-layer AML/CFT screening. Wallet KYA reports, compliance APIs, and Mauritius data feeds for agents and developers.

## Output

Returns a JSON object with a network_risk block containing risk level (e.g. 'medium'), total edges, total nodes, and max node score, plus arrays of graph nodes and edges representing the wallet's transaction network topology.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "edges": [],
  "nodes": [],
  "status": "ok",
  "network_risk": {
   "level": "medium",
   "total_edges": 6,
   "total_nodes": 4,
   "max_node_score": 35
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mauritius-oracle-sentinel-network-scan-25022bd8/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)
