/v1/batch
Audit up to 12 programs' upgrade authorities 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/solanaprogram-api/v1/batch" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/solanaprogram-api/v1/batch", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/solanaprogram-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/solanaprogram-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": "Audit up to 12 program addresses at once — each program's upgrade authority and immutability.",
"count": 2,
"source": "public Solana RPC",
"programs": [
{
"loader": "BPF Loader (Upgradeable)",
"address": "JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4",
"executable": true,
"is_program": true,
"upgradeable": true,
"is_immutable": false,
"loader_program": "BPFLoaderUpgradeab1e11111111111111111111111",
"upgrade_authority": "CvQZZ23qYDWF2RUpxYJ8y9K4skmuvYEEjH7fK58jtipQ",
"last_deployed_slot": 423991740,
"program_data_account": "4Ec7ZxZS6Sbdg5UGSLHbAnM7GQHp2eFd4KYWRexAipQT"
},
{
"loader": "BPF Loader (Upgradeable)",
"address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
"executable": true,
"is_program": true,
"upgradeable": true,
"is_immutable": true,
"loader_program": "BPFLoaderUpgradeab1e11111111111111111111111",
"upgrade_authority": null,
"last_deployed_slot": 419472000,
"program_data_account": "3gvYRKWyXRR9xKWe1ZjPhLY5ZJRN7KDB4rFZFGoJfFk2"
}
]
},
"meta": {
"timestamp": "2026-06-14T08:04:03.565Z",
"request_id": "4e1d9224-9719-4049-8887-1c5eefdce0d4"
},
"status": "ok",
"message": "Programs retrieved successfully",
"success": true
}