Jump to
Ctrl
+
/

List XRP (Ripple) Transactions by Address

GET
/blockchain-data/xrp-specific/{network}/addresses/{address}/transactions

This endpoint will list XRP transactions by a attribute address. The transactions listed will detail additional information such as hash, height, time of creation in Unix timestamp, etc.

Since XRP is a different blockchain than Bitcoin and Ethereum, it isn't unified.

Path Parameters

network string Required

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.

address string Required

Represents the public address, which is a compressed and shortened form of a public key.

Query Parameters

context string Optional

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.

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
offset integer Optional

The starting index of the response items, i.e. where the response should start listing the returned items.

Default : 0
transactionType string Optional

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2023-04-25
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

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.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
offset integer Required

The starting index of the response items, i.e. where the response should start listing the returned items.

0
total integer Required

Defines the total number of items returned in the response.

100
items array Items (object) Required
destinationTag integer Optional
3999472835
index integer Required

Represents the index position of the transaction in the block.

3
minedInBlockHash string Required

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.

3dff3ab3697a0a3116062a92a499dc7b5c9c777b2035f79bb906894972d4573d
minedInBlockHeight integer Required

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.

15949067
recipients array Items (object) Required

Represents an object of addresses that receive the transactions.

address string Required

Represents the hash of the address that receives the funds.

rNUY3X3HovAXuTesTbMh8PAX6CM5V2RzMY
amount string Required

Defines the amount of the received funds as a string.

0.00001
senders array Items (object) Required

Represents an object of addresses that provide the funds.

address string Required

Represents the hash of the address that provides the funds.

rNUY3X3HovAXuTesTbMh8PAX6CM5V2RzMY
amount string Required

Represents the total amount sent by this address including the fee.

0.00001
sequence integer Required

Defines the transaction input's sequence as an integer, which is is used when transactions are replaced with newer versions before LockTime.

39673
status string Required

Defines the status of the transaction.

tesSUCCESS
timestamp integer Required

Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.

4256894
transactionHash string Required

Represents the hash of the XRP transaction.

33684d38ccf56f5b10a25e60b11b251abe6288f41aadd03c7596dced895b282a
type string Required

Specifies the type of the transaction.

OfferCreate
fee object Required
amount string Required

Defines the amount of the transaction fee.

0.000024
unit string Required

Defines the unit of the transaction fee.

XRP
offer object Required
amount string Required

Defines the amount of the offer.

5.256
unit string Required

Defines the unit of the offer.

XRP
receive object Required
amount string Required

Defines the amount received.

4.236
unit string Required

Defines the unit of the amount received.

XRP
value object Required
amount string Required

Defines the specific amount of the value.

22
unit string Required

Defines the specific unit of the value.

XRP

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "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": 4256894,
                "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"
                }
            }
        ]
    }
}