/v1/new
Newest Solana mints flagged by open authorities
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/rugcheck-api/v1/new" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rugcheck-api/v1/new", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rugcheck-api/v1/new");
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/new",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "The newest tokens minted on Solana, each flagged by whether its mint authority (can the creator still inflate the supply?) and freeze authority (can the creator freeze your wallet?) are still active — the two biggest red flags on a fresh token. Live, cached ~30s.",
"count": 10,
"source": "RugCheck public API (api.rugcheck.xyz/v1/stats/new_tokens), keyless",
"tokens": [
{
"mint": "8nUTq79xQ6dv4oc885ksrghBkzqJeMBW7KJbTZyHgmon",
"name": null,
"symbol": null,
"visits": null,
"creator": null,
"risk_score": null,
"user_visits": null,
"mint_authority_active": false,
"freeze_authority_active": false
},
{
"mint": "9vtPbfQE8LY5qNgCURwddrBAtWzPtdyfK6cJqnvHdPHX",
"name": null,
"symbol": null,
"visits": null,
"creator": "ApK3bC6uZ6oA6AkHtCrTVfUy3o1cEB2aTyWUkcrztYrm",
"risk_score": null,
"user_visits": null,
"mint_authority_active": true,
"freeze_authority_active": false
},
{
"mint": "4ezT5fPGh9kL6tSSrApn2QFDfZ2yCiuT9P4x7sSipump",
"name": null,
"symbol": "ELON",
"visits": null,
"creator": "5byFUZ4KJNP5PQggh28p2bfgfKvZZ5yeQhPs72PxoEDH",
"risk_score": null,
"user_visits": null,
"mint_authority_active": false,
"freeze_authority_active": false
},
{
"mint": "2iuQV4FAv4Y4ZQEGEDr7viT8uqgLsQ9V1iNkFPi9pump",
"name": null,
"symbol": "ELON",
"visits": null,
"creator": "5byFUZ4KJNP5PQggh28p2bfgfKvZZ5yeQhPs72PxoEDH",
"risk_score": null,
"user_visits": null,
"mint_authority_active": false,
"freeze_authority_active": false
},
{
"mint": "GZX8RmRgZTDdqGHfK1LJVR1b9jfzK1hgSHPcjHBBpump",
"name": null,
"symbol": "ELON",
"visits": null,
"creator": null,
"risk_score": null,
"user_visits": null,
"mint_authority_active": false,
"freeze_authority_active": false
},
{
"mint": "HV7TViRLFzJ9F9wQZ9TDvf1j8QiTwUqQ83JfNjnLpump",
"name": null,
"symbol": "ELON",
"visits": null,
"creator": "3TiidoqLo4BLcPe7cTgYgTteYhWr8Ua8LWd2YnBY7z5U",
"risk_score": null,
"user_visits": null,
"mint_authority_active": false,
"freeze_authority_active": false
},
…