# CyberCentry Wallet Verification

> CyberCentry Wallet Verification is a paid API for AI agents from x402-cybercentry.up.railway.app, paid per call via x402, $0.100000/call, status unknown (last checked 2026-09-14).

Performs real-time blockchain security analysis on wallet addresses across 30+ EVM chains, including sanctions screening and risk detection.

## Facts

- Endpoint: GET https://x402-cybercentry.up.railway.app/api/services/wallet_verification
- Price: $0.100000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-cybercentry-up-railway-app-065273fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v8bG48BDsJ9xSXB3IxR5s

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 x402-cybercentry-up-railway-app-065273fd
```

Example prompt: Can you run a full sanctions and risk check on this Ethereum wallet address 0xAbC123...def456 before I send any funds — I need to know if it's flagged on any of the 30+ EVM chains or has any sanctions hits?

## When to prefer this

Choose this endpoint when you need real-time, multi-chain EVM wallet risk assessment with sanctions screening in a single call. Ideal for pre-transaction due diligence, compliance checks, or AML workflows where you need to verify a wallet across many chains simultaneously rather than querying individual chain explorers.

## Known failure modes

- Invalid or malformed wallet address returns a validation error
- Unsupported chain identifier returns a not-found or unsupported error
- Payment not received (402) results in access denied before analysis runs
- Wallet address not found on queried chain may return empty or low-confidence results
- Rate limiting may occur under high-frequency requests
- Network timeout if blockchain node is temporarily unavailable

## How this service works

Real-time blockchain security analysis across 30+ EVM chains with sanctions screening and risk detection.

## Output

Returns a security analysis report for the queried wallet address including sanctions screening results, risk level indicators, threat flags, and chain-specific findings across 30+ EVM-compatible networks.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-cybercentry-up-railway-app-065273fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-cybercentry.up.railway.app](https://www.zero.xyz/host/x402-cybercentry.up.railway.app/llms.txt)
