Jump to
Ctrl
+
/

Get XRP (Ripple) Transaction Details By Transaction ID

GET
/blockchain-data/xrp-specific/{network}/transactions/{transactionHash}

Through this endpoint customers can obtain details about a XRP transaction by the transaction's unique identifier.

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.

transactionHash string Required

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.

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.

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
item object Required
additionalData string Required

Represents additional data that may be needed.

rPmPErQe4g9725pcNxJpuvKkdqTESTQ6Tu
destinationTag integer Optional
3999472835
index string Required

Defines the index of the transaction, i.e. the consecutive place it takes in the blockchain.

2
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.

3f7af58d6cf1cd9020fb285d8e3e215131800d5109e42647ffd9b3aeae59df33
minedInBlockHeight string 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.

15973802
offer object Required

Defines the specific offer.

amount string Required

Defines the amount of the offer.

3.0154
unit string Required

Defines the unit of the offer.

XRP
receive object Required

Defines on object array of the funds for which an offer is made.

amount string Required

Defines the amount of the funds for which an offer is made.

2.1256
unit string Required

Defines the unit of the funds for which an offer is made.

XRP
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.

4294967295
status string Optional

Defines the status of the transaction.

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.

1582202940
transactionHash string Required

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.

36a1737481edec87bacc3101dfb752ae2c76f9171e7edebe587e330c1ea77c8d
type string Required

Defines the type of the transaction.

Payment
fee object Required
amount string Required

Defines the amount of the fee.

0.0021
unit string Required

Defines the unit of the fee.

XRP
value object Required
amount string Required

Defines the amount of the value.

3.0254
unit string Required

Defines the 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": {
        "item": {
            "additionalData": "rPmPErQe4g9725pcNxJpuvKkdqTESTQ6Tu",
            "destinationTag": 3999472835,
            "index": "2",
            "minedInBlockHash": "3f7af58d6cf1cd9020fb285d8e3e215131800d5109e42647ffd9b3aeae59df33",
            "minedInBlockHeight": "15973802",
            "offer": {
                "amount": "3.0154",
                "unit": "XRP"
            },
            "receive": {
                "amount": "2.1256",
                "unit": "XRP"
            },
            "recipients": [
                {
                    "address": "rNUY3X3HovAXuTesTbMh8PAX6CM5V2RzMY",
                    "amount": "0.00001"
                }
            ],
            "senders": [
                {
                    "address": "rNUY3X3HovAXuTesTbMh8PAX6CM5V2RzMY",
                    "amount": "0.00001"
                }
            ],
            "sequence": 4294967295,
            "status": "",
            "timestamp": 1582202940,
            "transactionHash": "36a1737481edec87bacc3101dfb752ae2c76f9171e7edebe587e330c1ea77c8d",
            "type": "Payment",
            "fee": {
                "amount": "0.0021",
                "unit": "XRP"
            },
            "value": {
                "amount": "3.0254",
                "unit": "XRP"
            }
        }
    }
}