Jump to
Ctrl
+
/

Decode XRP Address

GET
/utils/xrp/{network}/addresses/decode/{xAddress}

This endpoint is used to decode an X-Address into classic address and tag.

Path Parameters

network string Required

The XRP network to use (mainnet, testnet).

xAddress string Required

The X-Address that has to be decoded.

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.

2025-09-23
requestId string Required

Defines the ID of the request. The requestId is generated by Vaultody 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
classicAddress string Required

The classic XRP Ledger address.

rB1QL2KsiwrwaErZ8Pa8dVh3ZEQ2oKGp9J
tag string Required

A numeric identifier associated with an XRP Ledger address.

123
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2025-09-23",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "classicAddress": "rB1QL2KsiwrwaErZ8Pa8dVh3ZEQ2oKGp9J",
            "tag": "123"
        }
    }
}