Skip to main content
Version: 1.0
Endpoints Summary
GET Reward account withdrawal transactions

GET Reward account withdrawal transactions

Returns details of a transaction used to withdraw rewards given its staked address.

GET /api/core/transactions/{transaction_hash}/withdrawals

🎰 Parameters

NameDescriptionInTypeRequired
transaction_hashThe transaction hash.pathstringtrue

👨‍💻 Code samples

const CBI = await new CardanoBI({ apiKey: 'YOUR-KEY', apiSecret: 'YOUR-SECRET' }); 
const withdrawals = await CBI.core.transactions.withdrawals_({ transaction_hash: "cb44c5dd07ab3fee81f05ddd3e4596d2664e6c0ae77bccf99d1c9605dd01808d" });
console.log(withdrawals);

💌 Response Codes

OK: Successful request.

[
{
"stake_address": "stake1u9frlh9lvpdjva46ge0yc4c8zg5e0d37ch42zyyrzmu2hygnmy4xc",
"amount": 1223813,
"redeemer_id": null
},
"...",
{
"stake_address": "stake1u9frlh9lvpdjva46ge0yc4c8zg5e0d37ch42zyyrzmu2hygnmy4xc",
"amount": 1223813,
"redeemer_id": null
}
]

💌 Response Schemas

Status Code 200

NameTypeDescription
stake_addressstringThe Bech32 encoded version of the stake address.
amountnumber(double)The withdrawal amount (in Lovelace).
redeemer_idinteger(int64)The Redeemer table index that is related with this withdrawal.