Skip to content
GET /v1/transaction

A transaction value, fee and confirmations

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/transaction" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dogecoin-api/v1/transaction", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dogecoin-api/v1/transaction");
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/transaction",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "size": 94,
        "txid": "c72557f551216ee3e534b4fe09ad4ec257d33dfb4d7a7cb00f94bad870ae3a08",
        "source": "Dogecoin",
        "fee_doge": 0,
        "confirmed": true,
        "fee_koinu": 0,
        "total_doge": 10297.68408048,
        "input_count": 1,
        "block_height": 5000000,
        "confirmed_at": "2023-12-10T06:04:05.757Z",
        "double_spend": false,
        "output_count": 1,
        "confirmations": 1243023
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:43.286Z",
        "request_id": "d059ced9-a659-4e82-8846-a1b17ed7bbd3"
    },
    "status": "ok",
    "message": "Transaction retrieved successfully",
    "success": true
}