Jump to
Ctrl
+
/

Get XRP (Ripple) Address Details

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

Through this endpoint the customer can receive basic information about a given XRP address based on confirmed/synced blocks only. In the case where there are any incoming or outgoing unconfirmed transactions for the specific address, they will not be counted or calculated here.

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.

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
balance object Required

Defines the balance of the account.

amount string Required

Represents the total amount of the balance.

22.0000
unit string Required

Represents the unit used for the balance.

XRP
incomingTransactionsCount integer Required

Defines the count of all confirmed incoming transactions from the address for coins. This applies to coins only, not to tokens transfers

1
outgoingTransactionsCount integer Required

Defines the count of all confirmed outgoing transactions for coins. This applies to coins only, not to tokens transfers

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

25648975
transactionsCount integer Required

Represents the total number of all transactions as part of this block.

2

Credits Cost : 500 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "balance": {
                "amount": "22.0000",
                "unit": "XRP"
            },
            "incomingTransactionsCount": 1,
            "outgoingTransactionsCount": 1,
            "sequence": 25648975,
            "transactionsCount": 2
        }
    }
}