Skip to main content
GET
/
user
/
{btcaddress}
/
utxo
cURL
curl --request GET \
  --url https://api.odin.fun/v1/user/{btcaddress}/utxo \
  --header 'Authorization: Bearer <token>'
[
  {
    "txid": "<string>",
    "vout": 123,
    "value": "<string>",
    "height": 123,
    "confirmations": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

btcaddress
string
required

Response

default - application/json
txid
string
required
vout
number
required
value
string
required
height
number
required
confirmations
number
required