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.
| Method | Endpoint | Description | Auth |
|---|---|---|---|
| POST | /api/scan | Full multi-source security scan of a token | Key |
| POST | /api/score | Score a scan bundle with the ShieldX engine | Key |
| GET | /api/verified-tokens | Tokens cleared & survived (track record) | Open |
| GET | /api/latest-scans | Global recent-scan feed | Open |
| GET | /api/top-tokens | Active promoted placements | Open |
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.