V3 API Reference
Radar V3 API Reference
Enterprise-grade risk assessment with sub-10-second response times, multi-chain support, and intelligent AI-enhanced score calibration.
What's New in V3
< 10s response times (vs 15-30s in V2)
EVM, Bitcoin, Tron, Solana, TON, Dogecoin
AI-enhanced score calibration
Optimized batch processing
API Access Required
Contact our team to obtain API credentials for FailSafe Radar V3 access. Get API access
Base URL & Authentication
Base URL
https://api.radar.getfailsafe.comAuthentication Header
Authorization: Bearer YOUR_API_KEYV3 Endpoints Overview
| Endpoint | Method | Auth | Description |
|---|---|---|---|
/api/v3/health | GET | No | Service health check |
/api/v3/intel | POST | Required | Single address intelligence |
/api/v3/intel/batch | POST | Required | Batch address intelligence |
/api/v3/blacklist/:address | GET | No | Quick stablecoin blacklist check |
/api/v3/feedback | POST | Required | Submit feedback for model improvement |
/api/v3/model/status | GET | No | Current model configuration |
/api/v3/metrics | GET | No | Pipeline performance metrics |
Quick Start
Single Address Check
curl -X POST https://api.radar.getfailsafe.com/api/v3/intel \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"address": "0x1234...abcd"}'Batch Check
curl -X POST https://api.radar.getfailsafe.com/api/v3/intel/batch \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"addresses": ["0x1234...abcd", "TL6YQvH...Q9", "bc1q...xyz"],
"options": {"include_details": false}
}'Rate Limits
| Endpoint | Rate Limit |
|---|---|
/api/v3/intel | 60 requests/minute |
/api/v3/intel/batch | 10 requests/minute |
/api/v3/blacklist | 300 requests/minute |
/api/v3/feedback | 30 requests/minute |
Rate limit headers are included in all responses:
X-RateLimit-Limit: 60 | X-RateLimit-Remaining: 45 | X-RateLimit-Reset: 1704537600Detailed Endpoint Documentation
Ready to Get Started?
Contact our team to obtain API credentials and begin integration.