Integrate via API
curl -s https://rugcheck.aethercore.dev/v1/audit/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN
import httpx
resp = httpx.get(
"https://rugcheck.aethercore.dev/v1/audit/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN"
)
report = resp.json()
print(f"Risk: {report['action']['risk_level']} ({report['action']['risk_score']}/100)")
const resp = await fetch(
"https://rugcheck.aethercore.dev/v1/audit/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN"
);
const report = await resp.json();
console.log(`Risk: ${report.action.risk_level} (${report.action.risk_score}/100)`);