Skip to main content
GET
/
api
/
btc
/
addresses
/
{address}
/
ordinals
Get inscription IDs + rune balances held at a Bitcoin address (ord indexer)
curl --request GET \
  --url https://nexus.gerowallet.io/api/btc/addresses/{address}/ordinals \
  --header 'Authorization: Bearer <token>'
{
  "address": "<string>",
  "inscriptions": [
    "<string>"
  ],
  "outputs": [
    "<string>"
  ],
  "runesBalances": [
    {
      "name": "<string>",
      "amount": 123,
      "divisibility": 123,
      "symbol": "<string>"
    }
  ],
  "satBalance": 123,
  "source": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Token Authentication

Path Parameters

address
string
required
Required string length: 14 - 128
Pattern: ^[a-zA-HJ-NP-Z0-9]{14,128}$

Query Parameters

network
enum<string>
Available options:
CARDANO_MAINNET,
CARDANO_PREPROD,
CARDANO_PREVIEW,
APEX_PRIME_MAINNET,
APEX_VECTOR_MAINNET,
APEX_VECTOR_TESTNET,
MIDNIGHT_MAINNET,
MIDNIGHT_PREPROD,
MIDNIGHT_PREVIEW,
BITCOIN_MAINNET,
BITCOIN_TESTNET4

Response

200 - */*

OK

address
string
inscriptions
string[]
outputs
string[]
runesBalances
object[]
satBalance
integer<int64>
source
string