This endpoint will list transactions by an attribute blockHash
. The transactions listed will detail additional information such as hash, addresses, time of creation in Unix timestamp, etc.
Since XRP is a different blockchain than Bitcoin and Ethereum, it isn't unified.
Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while network like "testnet" is a test network.
Represents the hash of the block, which is its unique identifier. It represents a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context
is specified by the user.
Defines how many items should be returned in the response per page basis.
The starting index of the response items, i.e. where the response should start listing the returned items.
Specifies the version of the API that incorporates this endpoint.
Defines the ID of the request. The requestId
is generated by Crypto APIs and it's unique for every request.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context
is specified by the user.
Defines how many items should be returned in the response per page basis.
The starting index of the response items, i.e. where the response should start listing the returned items.
Defines the total number of items returned in the response.
Represents any additional data that may be needed.
Represents the index position of the transaction in the specific block.
Represents the hight of the block where this transaction was mined/confirmed for first time. The height is defined as the number of blocks in the blockchain preceding this specific block.
Defines the amount of the offer.
Defines the unit of the offer.
Represents an object of addresses that receive the transactions.
Represents the hash of the address that receives the funds.
Defines the amount of the received funds as a string.
Represents an object of addresses that provide the funds.
Represents the hash of the address that provides the funds.
Represents the total amount sent by this address including the fee.
Defines the transaction input's sequence as an integer, which is is used when transactions are replaced with newer versions before LockTime.
Defines the status of the transaction.
Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.
Represents the same as transactionId
for account-based protocols like Ethereum, while it could be different in UTXO-based protocols like Bitcoin. E.g., in UTXO-based protocols hash
is different from transactionId
for SegWit transactions.
Defines the type of the transaction.
Defines the amount of the fee.
Defines the unit of the fee.
Defines the received amount.
Defines the unit of the received amount.
Defines the amount of the value.
Defines the unit of the value.
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"additionalData": "r4CmvbkDWGt9AZmkfuubmiSdsxGZFxAKBY",
"destinationTag": 3999472835,
"index": 3,
"minedInBlockHeight": 15971358,
"offer": {
"amount": "8.2365",
"unit": "XRP"
},
"recipients": [
{
"address": "rNUY3X3HovAXuTesTbMh8PAX6CM5V2RzMY",
"amount": "0.0001"
}
],
"senders": [
{
"address": "rPmPErQe4g9725pcNxJpuvKkdqTESTQ6Tu",
"amount": "0.0001"
}
],
"sequence": 32568,
"status": "tesSUCCESS",
"timestamp": 236589,
"transactionHash": "ba3bc1337071c8e73b441fe12a1911f4365d7ea82cace7c8ecba3ee9f364978b",
"type": "Payment",
"fee": {
"amount": "2.0325",
"unit": "XRP"
},
"receive": {
"amount": "6.2354",
"unit": "XRP"
},
"value": {
"amount": "22.023",
"unit": "XRP"
}
}
]
}
}