Jump to
Ctrl
+
/

List XRP (Ripple) Transactions By Block Height

GET
/blockchain-data/xrp-specific/{network}/blocks/height/{blockHeight}/transactions

This endpoint will list transactions by an attribute blockHeight. 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.

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.

blockHeight integer Required

Represents the number of blocks in the blockchain preceding this specific block. Block numbers have no gaps. A blockchain usually starts with block 0 called the "Genesis block".

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

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
additionalData string Optional
r4CmvbkDWGt9AZmkfuubmiSdsxGZFxAKBY
destinationTag integer Optional
3999472835
index integer Required
3
minedInBlockHash string Required
14754656235f865a74eba27791fd41a47bdfe07fe811ff6d78f53db32e129e39
recipients array Items (object) Required

Object Array representation of transaction receivers

address string Required

String representation of the receiver address

rNUY3X3HovAXuTesTbMh8PAX6CM5V2RzMY
amount string Required

String representation of the amount

0.0001
senders array Items (object) Required

Object Array representation of transaction senders

address string Required

String array representation of the sender address

rPmPErQe4g9725pcNxJpuvKkdqTESTQ6Tu
amount string Required

String representation of the amount

0.0001
sequence integer Required
32568
status string Required
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.

236589
transactionHash string Required
ba3bc1337071c8e73b441fe12a1911f4365d7ea82cace7c8ecba3ee9f364978b
type string Required
Payment
fee object Required
amount string Required
2.0325
unit string Required
XRP
offer object Required
amount string Required
8.2365
unit string Required
XRP
receive object Required
amount string Required
6.2354
unit string Required
XRP
value object Required
amount string Required
22.023
unit string Required
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": [
            {
                "additionalData": "r4CmvbkDWGt9AZmkfuubmiSdsxGZFxAKBY",
                "destinationTag": 3999472835,
                "index": 3,
                "minedInBlockHash": "14754656235f865a74eba27791fd41a47bdfe07fe811ff6d78f53db32e129e39",
                "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"
                },
                "offer": {
                    "amount": "8.2365",
                    "unit": "XRP"
                },
                "receive": {
                    "amount": "6.2354",
                    "unit": "XRP"
                },
                "value": {
                    "amount": "22.023",
                    "unit": "XRP"
                }
            }
        ]
    }
}