Skip to content
GET /v1/address

An address DOGE balance and history

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/dogecoin-api

It works. Grab an API key and use it in your project.

Get an API key

Code 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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}