Through this endpoint customers can obtain details on transaction request.
Represents the unique ID of the transaction 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.
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 an optional note for additional details.
Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.
Defines the priority for the fee, if it is "slow", "standard" or "fast".
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 networks like "testnet", "sepolia" are test networks.
Represents a list of recipient addresses with the respective amounts. In account-based protocols like Ethereum there is only one address in this list.
The address which receives this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one recipient.
Defines a specific Tag that is an additional XRP address feature. It helps identify a transaction recipient beyond a wallet address. The tag that was encoded into the x-Address along with the Classic Address.
Represents the amount received to this address.
Represents the public address, which is a compressed and shortened form of a public key. A classic address is shown when the destination address is an x-Address.
Defines the unit of the amount.
Defines the total transaction amount.
Represents the unique identifier of a transaction, i.e. it could be transactionId in UTXO-based protocols like Bitcoin, and transaction hash in Ethereum blockchain.
Defines the status of the transaction request, e.g. pending.
Defines the transaction type, if it is for coins or tokens.
Defines the unit of the amount.
Defines the unique ID of the Wallet.
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"item": {
"additionalDetails": "yourExampleStringHere",
"blockchain": "bitcoin",
"feePriority": "standard",
"network": "testnet",
"recipients": [
{
"address": "mr3zKBc7skyDHcVHWww4JzzziPnrdYTscR",
"addressTag": 3999472835,
"amount": "0.001",
"classicAddress": "rA9bXGJcXvZKaWofrRphdJsBWzhyCfH3z",
"unit": "BTC"
}
],
"totalTransactionAmount": "0.001",
"transactionId": "61922aa68f192800067a8404",
"transactionRequestStatus": "created",
"transactionType": "coin",
"unit": "BTC",
"walletId": "60c9d9921c38030006675ff6"
}
}
}