/v1/address
An address DOGE balance and history
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/dogecoin-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dogecoin-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dogecoin-api/v1/address");
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/dogecoin-api/v1/address",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Dogecoin",
"address": "DH5yaieqoZN36fDVciNyRueRGvGLR3mr7L",
"tx_count": 1474,
"balance_doge": 61870.07540823,
"total_sent_doge": 43853282503.07366,
"final_balance_doge": 61870.07540823,
"total_received_doge": 43853344373.14908,
"unconfirmed_tx_count": 0,
"unconfirmed_balance_doge": 0
},
"meta": {
"timestamp": "2026-06-10T14:01:43.043Z",
"request_id": "554c7681-e9f4-4f9b-83e7-33ee58a97ff2"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}