Skip to main content
GET
/
api
/
v1
/
transaction
/
{network}
/
{txId}
cURL
curl --request GET \
  --url https://dash.betteruseblockchain.com/api/v1/transaction/{network}/{txId} \
  --header 'Authorization: Bearer <token>'
{
  "closeRewards": "<string>",
  "closingAmount": "<string>",
  "confirmedRound": 123,
  "fee": 123,
  "firstValid": 123,
  "genesisHash": "<string>",
  "genesisId": "<string>",
  "id": "<string>",
  "intraRoundOffset": 123,
  "lastValid": 123,
  "note": "<string>",
  "receiverRewards": "<string>",
  "roundTime": 123,
  "sender": "<string>",
  "senderRewards": "<string>",
  "signature": "<string>",
  "txType": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

network
string
required

The blockchain network (e.g., ALGO, ETH, BTC, BSC, POL, GLRM).

txId
string
required

The transaction ID.

Response

Transaction details retrieved successfully.

closeRewards
string | null

Rewards for closing the transaction.

closingAmount
string | null

Closing amount of the transaction.

confirmedRound
integer | null

Confirmed round number.

fee
integer | null

Transaction fee.

firstValid
integer | null

First valid round.

genesisHash
string | null

Genesis hash of the transaction.

genesisId
string | null

Genesis ID of the transaction.

id
string | null

Transaction ID.

intraRoundOffset
integer | null

Intra-round offset.

lastValid
integer | null

Last valid round.

note
string | null

Optional note for the transaction.

receiverRewards
string | null

Rewards received by the receiver.

roundTime
integer | null

Time of the round.

sender
string | null

Sender of the transaction.

senderRewards
string | null

Rewards received by the sender.

signature
string | null

Signature of the transaction.

txType
string | null

Type of the transaction.