Тhis endpoint lists XRP transactions by the attribute address
and the query parameters fromTimestamp
and toTimestamp
which gives customers the opportunity to filter the results by a specified time period.
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 public address, which is a compressed and shortened form of a public key.
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 the specific time/date from which the results will start being listed.
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 specific time/date to which the results will be listed.
Defines the transaction type.
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.
A destination tag is a value used to discern the holder of the Ripple (XRP) being deposited or withdrawn.
Represents the index position of the transaction in the block.
Represents the hash of the block where this transaction was mined/confirmed for first time. The hash is defined as a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.
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.
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 hash of the XRP transaction.
Specifies the type of the transaction.
Defines the amount of the transaction fee.
Defines the unit of the transaction fee.
Defines the amount of the offer.
Defines the unit of the offer.
Defines the amount received.
Defines the unit of the amount received.
Defines the specific amount of the value.
Defines the specific unit of the value.
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"destinationTag": 3999472835,
"index": 3,
"minedInBlockHash": "3dff3ab3697a0a3116062a92a499dc7b5c9c777b2035f79bb906894972d4573d",
"minedInBlockHeight": 15949067,
"recipients": [
{
"address": "rNUY3X3HovAXuTesTbMh8PAX6CM5V2RzMY",
"amount": "0.00001"
}
],
"senders": [
{
"address": "rNUY3X3HovAXuTesTbMh8PAX6CM5V2RzMY",
"amount": "0.00001"
}
],
"sequence": 39673,
"status": "tesSUCCESS",
"timestamp": 1644417868,
"transactionHash": "33684d38ccf56f5b10a25e60b11b251abe6288f41aadd03c7596dced895b282a",
"type": "OfferCreate",
"fee": {
"amount": "0.000024",
"unit": "XRP"
},
"offer": {
"amount": "5.256",
"unit": "XRP"
},
"receive": {
"amount": "4.236",
"unit": "XRP"
},
"value": {
"amount": "22",
"unit": "XRP"
}
}
]
}
}