Skip to main content
GET
/
api
/
btc
/
ordinals
/
outputs
/
{outpoint}
Get inscription IDs + rune balances carried by a UTxO outpoint
curl --request GET \
  --url https://nexus.gerowallet.io/api/btc/ordinals/outputs/{outpoint} \
  --header 'Authorization: Bearer <token>'
{
  "outpoint": "<string>",
  "address": "<string>",
  "value": 123,
  "scriptPubkey": "<string>",
  "spent": true,
  "transaction": "<string>",
  "indexed": true,
  "confirmations": 123,
  "inscriptions": [
    "<string>"
  ],
  "runes": [
    {
      "name": "<string>",
      "amount": 123,
      "divisibility": 123,
      "symbol": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Token Authentication

Path Parameters

outpoint
string
required
Pattern: ^[0-9a-fA-F]{64}:\d+$

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

outpoint
string
address
string
value
integer<int64>
scriptPubkey
string
spent
boolean
transaction
string
indexed
boolean
confirmations
integer<int64>
inscriptions
string[]
runes
object[]