/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/rugcheck-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rugcheck-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rugcheck-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/rugcheck-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "report takes mint (a Solana mint address, required). recent, new, verified and meta take no parameters. risk_score is RugCheck's normalised risk score (higher = more red flags); rugged is a boolean; mint_authority_active/freeze_authority_active true means that power has NOT been revoked (riskier). A short ~30-second protective cache fronts the upstream.",
"source": "RugCheck public API (api.rugcheck.xyz/v1), keyless, live",
"service": "rugcheck-api",
"endpoints": {
"GET /v1/new": "Newest Solana mints flagged by open mint/freeze authority.",
"GET /v1/meta": "This document.",
"GET /v1/recent": "Tokens being checked right now, with risk scores.",
"GET /v1/report": "One token's full risk report by mint (mint=...).",
"GET /v1/verified": "Verified tokens."
},
"description": "Solana token safety and rug-risk analysis, live from the public RugCheck API (no key). It inspects a token's on-chain authorities, holder distribution, liquidity and LP locks and turns them into a risk score and concrete red flags. The report endpoint gives one token's full risk report by mint (score, rugged status, risks, mint/freeze authority, holders, liquidity, top-holder and insider concentration); recent lists the tokens being checked right now; new is the newest-mints firehose flagged by open authorities; verified lists verified tokens. The token-safety / rug-risk cut for Solana — distinct from the scam/phishing/dApp-safety feed (URL and approval checks via GoPlus, not on-chain token risk), the launchpad firehose, the DEX-pair screeners and the price feeds.",
"sample_recent": {
"symbol": "DragonWorm",
"risk_score": 1
},
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T19:35:58.154Z",
"request_id": "96330cae-ba23-4813-a581-db623862b201"
},
"status": "ok",
"message": "Meta",
"success": true
}