DEVELOPERS

ShieldX API

The same engine that powers the scanner — honeypot, rug-vector and insider-cluster detection across every major chain — available as a clean JSON API for your app, bot, or risk desk.

Individual

$49 / month
For indie devs, bots & small dashboards.
  • 60 requests / minute
  • 10,000 scans / month
  • All chains + scoring engine
  • Verified / Latest / Top Tokens feeds
  • Email support

Institutional

From $499 / month
For exchanges, funds & data providers.
  • Custom rate limits (1,000+/min)
  • Unlimited / metered volume
  • Priority queue + 99.9% SLA
  • Bulk + webhook delivery
  • Dedicated support & onboarding

Endpoints

Authenticate with an x-api-key header. Public read feeds are open; scan & score require a key.

MethodEndpointDescriptionAuth
POST/api/scanFull multi-source security scan of a tokenKey
POST/api/scoreScore a scan bundle with the ShieldX engineKey
GET/api/verified-tokensTokens cleared & survived (track record)Open
GET/api/latest-scansGlobal recent-scan feedOpen
GET/api/top-tokensActive promoted placementsOpen
cURL
JavaScript
# Scan a Solana token
curl -X POST https://your-shieldx-domain/api/scan \
  -H "x-api-key: shx_live_…" \
  -H "content-type: application/json" \
  -d '{"chain":"solana","query":"<MINT_ADDRESS>"}'

Responses are JSON. Rate limits are enforced per key (HTTP 429 with retry-after when exceeded). Keep your key server-side — never ship it in client code.