Complete token security scan combining all DeFi Shield analyses in a single x402-paid call.
What it does
The `/api/defi/full-scan` endpoint from DeFi Shield performs a comprehensive token security scan that bundles all of the platform's individual DeFi intelligence analyses into one request. According to the provider's landing page, this includes contract risk scoring, holder concentration analysis, honeypot detection, yield sustainability scoring, deployer forensics, rug pull scoring, and more — effectively combining the output of the 12 DeFi Intelligence endpoints. The endpoint is priced at $2.50 per call, paid in USDC on Base via the x402 protocol.
DeFi Shield is a suite of 69 paid API endpoints organized across 11 categories (DeFi Intelligence, Safety & Compliance, Developer Security, Wallet Intelligence, Protocol Intelligence, MEV & Trading, NFT Intelligence, Cross-Chain, Agent-to-Agent Trust, Data Infrastructure, and Real-Time Monitoring). All endpoints accept POST requests with an x402 payment header. Free discovery is available via GET on any endpoint path, and a health/pricing manifest is served at `/api/health`. An A2A discovery card is published at `/.well-known/agent-card.json`.
The probe confirmed the endpoint is live, returning HTTP 402 on POST as expected for x402 endpoints. However, the 402 challenge body was empty (no payment details were parsed), no OpenAPI schema was found, and the `/docs` page returns 404. Without a formal schema or documented request/response structure, the exact required fields and response format must be inferred from the landing page examples (which show `{"address": "0x..."}` as a typical DeFi endpoint input).
Capabilities
Use cases
- —AI agents performing pre-trade due diligence on a token before executing a swap
- —Autonomous portfolio managers screening new tokens for rug pull or honeypot risk
- —DeFi aggregators enriching token listings with composite security scores
- —Wallet apps warning users about risky tokens before approval or purchase
- —Research bots compiling security reports across multiple tokens
Fit
Best for
- —Autonomous AI agents needing one-call comprehensive token security intelligence
- —DeFi trading bots that require pre-trade risk checks with minimal integration effort
- —Developers building security dashboards who want a single aggregated endpoint
Not for
- —Users who need only one specific analysis (cheaper individual endpoints exist at $0.25–$1.00)
- —Applications requiring free or subscription-based pricing rather than per-call micropayments
- —Non-EVM token analysis or traditional finance security scanning
Quick start
# Discover endpoint (free)
curl https://defi-shield-hazel.vercel.app/api/defi/full-scan
# Paid full scan (requires x402 payment header)
curl -X POST https://defi-shield-hazel.vercel.app/api/defi/full-scan \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402-payment-token>" \
-d '{"address": "0x..."}'Example
Request
{
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
}Endpoint
Quality
The endpoint is confirmed live (402 on POST) and the landing page provides clear pricing ($2.50/call USDC on Base) and a high-level description of capabilities. However, the 402 challenge body was empty, there is no OpenAPI schema, no docs page, and no example response structure — so request/response formats are inferred from the landing page quick-start example only.
Warnings
- —No OpenAPI or formal schema found; request/response structure is inferred from landing page examples only.
- —The 402 challenge body was empty — no payment parameters (amount, token, network) were parsed from the probe.
- —The /docs page returns 404; no dedicated documentation is available.
- —Example response JSON is unknown — no sample response was captured or documented.
Citations
- —Full-scan endpoint is priced at $2.50 per call and described as 'Complete token security scan — all analyses in one call'https://defi-shield-hazel.vercel.app
- —DeFi Shield has 69 paid API endpoints across 11 categories, paying with USDC via x402 on Basehttps://defi-shield-hazel.vercel.app
- —Free endpoint discovery is available via GET on any endpoint, with health/pricing at /api/health and A2A card at /.well-known/agent-card.jsonhttps://defi-shield-hazel.vercel.app
- —Typical DeFi endpoint request body uses {"address": "0x..."}https://defi-shield-hazel.vercel.app