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.
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.
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 the balance of the account.
Represents the total amount of the balance.
Represents the unit used for the balance.
Defines the count of all confirmed incoming transactions from the address for coins. This applies to coins only, not to tokens transfers
Defines the count of all confirmed outgoing transactions for coins. This applies to coins only, not to tokens transfers
Defines the transaction input's sequence as an integer, which is is used when transactions are replaced with newer versions before LockTime.
Represents the total number of all transactions as part of this block.
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"item": {
"balance": {
"amount": "22.0000",
"unit": "XRP"
},
"incomingTransactionsCount": 1,
"outgoingTransactionsCount": 1,
"sequence": 25648975,
"transactionsCount": 2
}
}
}