Install
openclaw skills install shieldapiShieldAPI — x402 Security Intelligence for AI Agents. 11 endpoints: password range check (k-anonymity), password check (deprecated), email breach lookup, dom...
openclaw skills install shieldapiData & Threat Intelligence Manifesto / Privacy Policy:
https://shield.vainplex.dev/privacy.html
We actively log scanned domains, URLs, and IPs to build a global Security Graph. We do not store PII. Every scan makes the whole network safer.
ShieldAPI is a pay-per-request Security Intelligence Service built on the x402 protocol (HTTP 402 Payment Required). It lets any AI agent perform comprehensive security checks — without accounts, API keys, or subscriptions. Just call, pay, get results.
Payments are settled in USDC on Base Mainnet. All endpoints support free demo mode.
Base URL: https://shield.vainplex.dev/api
Health/Discovery: GET /api/health (free, lists all endpoints + prices)
1. Payment Key Isolation (No Ambiguity):
Agents MUST NOT handle raw private keys or mnemonic phrases directly. Payment signing must be delegated to a secure signer module (e.g., @coinbase/x402, OpenClaw native wallet vault, or AgentProof Wallet Proxy). The X-PAYMENT header is generated out-of-band by the secure enclave.
2. Data Privacy (k-Anonymity):
For password checks, agents MUST use the check-password-range endpoint. Sending full SHA1 hashes (check-password) is heavily discouraged and flagged as a privacy violation. By sending only a 5-character prefix, the actual password hash never leaves the agent's environment.
3. Oracle Trust Registry:
ShieldAPI is officially registered and minted on the AgentProof Oracle Registry (ERC-8004) on Avalanche Mainnet as "ShieldAPI | Security Oracle" (Key-ID: 9913b2c3-6162-48f8-b624-3b4145b5abb7).
check-password-range — k-Anonymity Range Lookup (RECOMMENDED)Returns all matching hash suffixes for a 5-char prefix. The client locally checks if their full hash is in the returned list, ensuring zero-knowledge privacy.
GET /api/check-password-range?prefix=<5-char-sha1-prefix>{ prefix, total_matches, results: [{ suffix, count }] }check-password — Full Password Breach Check (⚠️ DEPRECATED)Checks a full SHA1 hash against 900M+ leaked passwords. Warning: Do not use for user data. Use range check instead.
GET /api/check-password?hash=<40-char-sha1>{ found: true/false, count: 3861493 }check-domain — Domain ReputationChecks DNS records, SPF/DMARC, SSL certificate, and queries Spamhaus/SpamCop/SORBS blacklists.
GET /api/check-domain?domain=<domain>{ domain, dns, blacklists, ssl, risk_score, risk_level }check-ip — IP ReputationChecks IPv4 against 4 blacklists, detects Tor exit nodes, resolves reverse DNS.
GET /api/check-ip?ip=<ipv4>{ ip, blacklists, is_tor_exit, reverse_dns, risk_score, risk_level }check-email — Email Breach ExposureChecks which data breaches affected the email's domain. Returns breach details, exposed data types, and risk recommendations.
GET /api/check-email?email=<email>{ breaches: [...], domain_breach_count, risk_score, risk_level, recommendations }check-url — URL Safety & Phishing DetectionChecks URL against URLhaus malware database, runs heuristic analysis (brand impersonation, suspicious TLDs, redirect chains).
GET /api/check-url?url=<url>{ url, checks: { urlhaus, heuristics, http }, threats, risk_score, risk_level }full-scan — Combined Security ScanRuns all applicable checks in parallel. Pass any combination of inputs.
GET /api/full-scan?email=<email>&domain=<domain>&ip=<ip>&url=<url>scan-skill — AI Skill Security ScannerRuns supply chain security checks (8 categories) against agent skills/plugins.
GET /api/scan-skill?url=<url>check-prompt — Prompt Injection DetectionAnalyzes prompts against 200+ known prompt injection patterns (<100ms).
GET /api/check-prompt?text=<prompt-text>check-mcp-trust — MCP Server Trust ScoreMulti-signal security, reliability & supply chain analysis for MCP servers.
GET /api/check-mcp-trust?pkg=<pkg>check-package — Supply Chain Pre-Flight CheckValidates software packages before installation.
GET /api/check-package?name=<pkg-name>All 11 endpoints support ?demo=true — returns realistic fake data, no payment required. Perfect for testing your integration before going live.
# Try it now:
curl -s "https://shield.vainplex.dev/api/check-url?demo=true"
curl -s "https://shield.vainplex.dev/api/full-scan?demo=true"
curl -s "https://shield.vainplex.dev/api/check-email?demo=true"
When you call any paid endpoint without payment, ShieldAPI returns HTTP 402 with machine-readable payment instructions:
{
"x402Version": 1,
"error": "X-PAYMENT header is required",
"accepts": [{
"scheme": "exact",
"network": "base",
"maxAmountRequired": "3000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0x...",
"resource": "https://shield.vainplex.dev/api/check-domain?domain=example.com",
"description": "Domain reputation & security check"
}]
}
An x402-enabled client (using @coinbase/x402, @x402/core, or an Agent native wallet) will:
X-PAYMENT header containing the signed payload9913b2c3-6162-48f8-b624-3b4145b5abb7 (ERC-8004 Avalanche)