# Madhouse Wallet Solana Sanctions Check

> Madhouse Wallet Solana Sanctions Check is a paid API for AI agents from scan.madhousewallet.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Checks a Solana wallet address or entity name against global sanctions lists to determine if they are sanctioned.

## Facts

- Endpoint: GET https://scan.madhousewallet.com/api/public/sanctions-check/solana
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/madhouse-wallet-solana-sanctions-check-eff2fd84
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__LZF-s8WBB6z1lufeZv4D

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 madhouse-wallet-solana-sanctions-check-eff2fd84
```

Example prompt: Can you check if the Solana address 5YNmS1R9nNSCDzb5a7mMJ1dwK9uHeAAF4CmPEwKgVWr8 is on any sanctions list — screen it against OFAC and international sanctions databases?

## When to prefer this

Use this endpoint when you need to perform sanctions compliance screening specifically tied to a Solana wallet address or when screening an entity in a Solana blockchain context. It draws on OpenSanctions (1.3M+ entries including OFAC SDN and EU sanctions) and is priced per-call at $0.04 USDC, making it suitable for on-demand transaction-level AML checks rather than bulk batch screening.

## Known failure modes

- Missing required `name` query parameter returns validation error
- Invalid country code format may return no results or error
- Common names without country or birthDate filters may return multiple false-positive matches
- Network timeout or service unavailability returns 5xx error
- Payment failure via x402 protocol blocks the request

## How this service works

Checks Solana addresses against sanctions lists.

## Output

Returns a JSON object with a `sanctioned` boolean (true if one or more entities matched), the submitted name, a `matchCount` integer, and a `matches` array containing detailed entity records (entityId, caption, entityType, topics, matchedOn, datasets) for each matched sanctioned entity. Empty matches array when clean.

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Full name of the person, company, or entity to screen. Required."
      },
      "address": {
       "type": "string",
       "description": "Optional free-text address for token-overlap disambiguation."
      },
      "country": {
       "type": "string",
       "description": "Optional ISO 3166-1 alpha-2 country code (e.g. US, RU, CN). Narrows results when both sides have a country."
      },
      "birthDate": {
       "type": "string",
       "description": "Optional birth date: YYYY or YYYY-MM-DD. Partial dates supported."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "sanctioned",
      "name",
      "matchCount",
      "matches"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "The name as submitted."
      },
      "matches": {
       "type": "array",
       "description": "All entities that passed the applied filters. Each entry has entityId, caption, entityType, topics, matchedOn, and datasets. Empty when sanctioned: false."
      },
      "matchCount": {
       "type": "number",
       "description": "Number of distinct entities that passed all filters. Common names without country/birthDate may return multiple matches."
      },
      "sanctioned": {
       "type": "boolean",
       "description": "True when one or more entities matched all applied filters. False means clean."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/madhouse-wallet-solana-sanctions-check-eff2fd84/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scan.madhousewallet.com](https://www.zero.xyz/host/scan.madhousewallet.com/llms.txt)
