Access your personal API key to scan tokens programmatically from your own apps and trading bots. Whale plan only — 1,000 requests per day.
curl -X POST https://rugradar-production.up.railway.app/api/v1/scan \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", "chain": "ETH"}'
const response = await fetch('https://rugradar-production.up.railway.app/api/v1/scan', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
address: '0x6982508145454Ce325dDbE47a25d4ec3d2311933',
chain: 'ETH'
})
});
const result = await response.json();
console.log(result.risk);
console.log(result.score);
console.log(result.flags);
import requests
response = requests.post(
'https://rugradar-production.up.railway.app/api/v1/scan',
headers={
'x-api-key': 'YOUR_API_KEY'
},
json={
'address': '0x6982508145454Ce325dDbE47a25d4ec3d2311933',
'chain': 'ETH'
}
)
result = response.json()
print(result['risk'])
print(result['score'])
Supported chains: ETH, BSC, BASE, ARB, SOL, MATIC, AVAX, FTM, OP, BLAST, ZKERA, LINEA, CRONOS, SCROLL, MANTA
Rate limit: 1,000 requests per day
Response format: JSON with risk score, flags, market data