GET
/
api
/
v1
/
transaction
/
{network}
/
{txId}
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).

txId
string
required

The transaction ID.

Response

200
application/json

Transaction details retrieved successfully.

The response is of type object.