/v1/account
Inspect any account: mint / token account / other
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/spltoken-api/v1/account" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/spltoken-api/v1/account", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/spltoken-api/v1/account");
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/spltoken-api/v1/account",
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": {
"mint": {
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"supply": "8554390332726576",
"program": "Token",
"decimals": 6,
"ui_supply": "8554390332.726576",
"is_initialized": true,
"mint_authority": "BJE5MMbqXjVwjAF7oxwPYXnTXDyspzZyt4vwenNw5ruG",
"supply_is_fixed": false,
"freeze_authority": "7dGbd2QZcCKcTndnHcTL8q7SMVXAkp688NTQYwrRCrar"
},
"note": "Live account inspection via getAccountInfo. type is 'mint' (a token), 'account' (a token holding) or other; the matching detail object is included.",
"type": "mint",
"source": "public Solana RPC",
"address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"program": "Token",
"lamports": 508418445463,
"executable": false,
"owner_program": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
},
"meta": {
"timestamp": "2026-06-14T08:04:08.258Z",
"request_id": "86a3197a-0106-456e-a1e4-28f447676fa4"
},
"status": "ok",
"message": "Account retrieved successfully",
"success": true
}