Price (USD)

$0

Source: NestEx

Market Cap (USD)

$0

Coin Supply (DORK)

0

Max: 21,000,000 DORK

PoS Difficulty

0

Block —

Dorkcoin (DORK) API Documentation

Overview Public - No Auth

The Dorkcoin (DORK) Explorer API provides public, read-only endpoints for balances, blocks, transactions, and network stats. All endpoints are GET and return JSON or plain text.

Base URL
(this site)
Notes
  • Examples below use fake addresses and txids.
  • Timestamps may vary by endpoint.
  • Market endpoints can be empty/zero while DORK is premarket.
Addresses
GET /api/v1/balance/{address}

Return the current balance (in DORK) for the given address.

Example
/api/v1/balance/DORK1FAKEADDRESS0000000000000000000001
Response (text):
3013262.41250152
GET /api/v1/address/{address}

List transactions for the given address (direction, amount, timestamp).

Example
/api/v1/address/DORK1FAKEADDRESS0000000000000000000002
Response (JSON):
[
  {
    "txid": "8b1e8ef824b20f90ea816f4d0f39ee1a3df88d36321b1c8e8f400e99f25dfc00",
    "amount": "9826026.2001792",
    "direction": "received",
    "timestamp": "20-12-2024 05:52:45"
  }
]
GET /api/v1/address/{address}/utxo

Get the list of unspent transaction outputs (UTXO) for an address. Returns txid, vout, value (sats), and status.

Example
/api/v1/address/DORK1FAKEADDRESS0000000000000000000002/utxo
Response (JSON):
[
  {
    "txid": "12f96289f8f9cd51ccfe390879a46d7eeb0435d9e0af9297776e6bdf249414ff",
    "vout": 0,
    "status": {
      "confirmed": true,
      "block_height": 698642,
      "block_hash": "000000000000000000007839f42e0e86fd53c797b64b7135fcad385158c9cafb",
      "block_time": 1630561459
    },
    "value": 644951084
  }
]
GET /api/v1/txid/{txid}

Get transaction details (inputs, outputs, totals, fee, timestamp).

Example
/api/v1/txid/c8684f73b09e01dae03d122500b2dc17977725c880ca3ef23cd41e2e5277aa11
Response (JSON):
[
  {
    "txid": "c8684f73b09e01dae03d122500b2dc17977725c880ca3ef23cd41e2e5277aa11",
    "inputs": [{"address": "DORK1...", "amount": 24497466.14272493}],
    "outputs": [{"address": "DORK1...", "amount": 21202714.06776493}],
    "fee": 0.00226,
    "timestamp": "02-01-2025 20:22:19"
  }
]
Chain & Market
GET /api/v1/block/{hash}

Returns details about a block by block hash.

Example
/api/v1/block/000000000000000015dc777b3ff2611091336355d3f0ee9766a2cf3be8e4b1ce
Response (JSON):
{
  "extras": {
    "reward": 638307429,
    "coinbaseTx": {
      "vin": [{ "scriptsig": "03ad..." }],
      "vout": [{ "scriptpubkey_address": "DORK1...", "value": 638307429 }]
    },
    "coinbaseRaw": "03ad...",
    "medianFee": 10,
    "feeRange": [1, 8, 9, 10, 15],
    "totalFees": 13307429,
    "avgFee": 5591,
    "avgFeeRate": 13,
    "pool": { "id": null, "name": "ExamplePool", "slug": "examplepool" },
    "matchRate": null
  },
  "id": "00000000000000000007566f8f035a1dc38b351e6f54778b311fe6dbabd79b46",
  "height": 736941,
  "version": 536870916,
  "timestamp": 1652891466,
  "bits": "1706f53a",
  "nonce": 3514220842,
  "difficulty": 31251101365711.12,
  "merkle_root": "4a3072f98f60cbb639bb7f46180b8843d17c7502627ffb633db0ed86610cdd71",
  "tx_count": 2381,
  "size": 1709571,
  "weight": 3997770,
  "previousblockhash": "00000000000000000005ef14db0b4befcbbe1e9b8676eec67fcf810a899c4d5e"
}
GET /api/v1/live-diff

Current network difficulty with exact source block and source type (rpc/sql).

Try
/api/v1/live-diff
Response (JSON):
{
  "difficulty": 38017052330.22743,
  "diff_block": 49356,
  "source": "rpc",
  "source_detail": "gbt/target"
}
GET/api/v1/blockcount

Current best block height.

Try
Response (text):
307967
GET/api/v1/lastprice

Latest DORK price in USD (plain number).

Try
Response (text):
0.00026452
GET/api/v1/marketcap

Market capitalization (USD).

Try
Response (text):
23322200.0
GET/api/v1/coinsupply

Total circulating coin supply (DORK).

Try
Response (text):
87997562500.0
GET/api/v1/blocktime

Average block time (seconds per block).

Try
Response (text):
60
GET/api/v1/hashrate

Current network hashrate (H/s as a number).

Try
Response (text):
1342000728748918