Aller au contenu
GET /v1/token

Token detail with price stats

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/dexpaprika-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/dexpaprika-api/v1/token" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexpaprika-api/v1/token", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexpaprika-api/v1/token");
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/dexpaprika-api/v1/token",
    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": {
        "id": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
        "name": "Bonk",
        "note": "Full detail for one on-chain token — name, symbol, decimals, total supply, description, website and multi-window price stats (price, 24h high/low, change and volume). Pass network (e.g. solana) and address (the token's on-chain address).",
        "source": "DexPaprika",
        "symbol": "Bonk",
        "low_24h": 4.33166844731891e-6,
        "network": "solana",
        "website": "https://www.bonkcoin.com",
        "decimals": 5,
        "high_24h": 4.5612768154336564e-6,
        "price_usd": null,
        "description": "The Official Bonk Inu token",
        "total_supply": 87994756839985.11,
        "volume_usd_24h": null,
        "price_change_24h": null
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:32.837Z",
        "request_id": "d7ae5f07-cf6b-4f1a-bfe2-37ffccc34a19"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}