Naar de inhoud
GET /v1/new

Newest Solana mints flagged by open authorities

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/rugcheck-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
            },
        
…