DOGE Connecting

Docs / Data & markets / Explorer API

Read the chain

Explorer API

A plain REST API for transactions, balances, UTXOs and DRC-20 history — no indexer of your own required.

Live

Explorer exposes the indexer as a plain REST API — everything the Explorer web app itself renders is available to you at the same URLs. All endpoints below are relative to https://explorer.dogesoft.io/api.

Transactions

EndpointDescription
GET /tx/:txidFull transaction detail by txid.
POST /tx/broadcastBroadcast a raw signed transaction to the network.
POST /tx/pipelineSubmit a signed move package to the pipeline broadcaster — see send pipeline.

Wallet & address reads

EndpointDescription
GET /wallet/address/:address/balanceConfirmed DOGE balance for an address.
GET /wallet/address/:address/utxosSpendable UTXO set for an address.
GET /wallet/address/:address/drc20All DRC-20 balances held by an address.
GET /wallet/address/:address/drc20/:tick/utxosDRC-20 carrier UTXOs for one tick.
GET /wallet/address/:address/historyChronological transaction history — shape below.
GET /wallet/address/:address/transfer_inscriptionsInscribed transfers for an address. Accepts count, order, envelope and txid query params.
history-response.json
{
  "address": "D8p...",
  "items": [
    {
      "txid": "a1b2...",
      "direction": "in",
      "counterparty_address": "D9q...",
      "block_height": 5822104,
      "amount_koinu": 420000000,
      "is_doginal": false,
      "confirmations": 142
    }
  ]
}

Amounts come back in koinu (1 DOGE = 100,000,000 koinu) — see terminology.

Indexer status

EndpointDescription
GET /statusIndexer health and current sync height — poll this before trusting a "not found" response as final.
ℹ️

There's deliberately no dedicated blocks endpoint documented here — Explorer's read surface is address- and transaction-first. If your use case genuinely needs raw block data, reach for a Dogecoin node RPC directly rather than routing it through Explorer.

Quantum / PQC registry

Explorer also carries a set of post-quantum-signature registry endpoints under /api/pqc/*, part of the ecosystem's forward-looking Falcon-signature attestation work described in the security model. Most integrations won't need these directly.