/v1/batch
Resolve up to 20 mints at once
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/spltoken-api/v1/batch" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/spltoken-api/v1/batch", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/spltoken-api/v1/batch");
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/batch",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Resolve up to 20 SPL mints at once via getMultipleAccounts.",
"count": 2,
"source": "public Solana RPC",
"tokens": [
{
"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"
},
{
"mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"supply": "8799472069047816821",
"program": "Token",
"decimals": 5,
"ui_supply": "87994720690478.16821",
"is_initialized": true,
"mint_authority": null,
"supply_is_fixed": true,
"freeze_authority": null
}
]
},
"meta": {
"timestamp": "2026-06-14T08:04:08.378Z",
"request_id": "53ac08cb-04e3-47b2-bf79-088e4e3d12f2"
},
"status": "ok",
"message": "Tokens retrieved successfully",
"success": true
}