Decode X-Address

Through this endpoint, customers can decode an encoded XRP address with tag, by providing the specific x-address. The response includes the decoded classic address and the tag.

Single Result - This endpoint returns only one single result. GET /blockchain-tools/{blockchain}/{network}/decode-x-address/{xAddress}

Path Parameters

  • Required
    blockchain string

    Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.

    Example : xrp
    Possible Values : xrp
  • Required
    network string

    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", "ropsten" are test networks.

    Example : testnet
    Possible Values : mainnet testnet
  • Required
    xAddress string

    Represents the encoded classic address with its destination tag.

    Example : TVTMSyg6nRscAm2JtRd8hnpF9nD21CgZx6ibb9iy3EWHotV

Query parameters

  • Optional
    context string

    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.

    Example : yourExampleString

Response schema

200 400 401 402 403 409 415 422 429 500
HTTP Status Code: 200
Content-Type: application/json

The request has been successful.

  • Object :

  • Required
    apiVersion string

    Specifies the version of the API that incorporates this endpoint.

    Example : 2023-04-25
  • Required
    requestId string

    Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

    Example : 601c1710034ed6d407996b30
  • Optional
    context string

    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.

    Example : yourExampleString
  • Required
    data object
    • Required
      item object
      • Required
        addressTag integer

        Defines a specific Tag that is an additional XRP address feature. It helps identifying a transaction recipient beyond a wallet address.

        Example : 3999472835
      • Required
        classicAddress string

        Represents the public address, which is a compressed and shortened form of a public key.

        Example : rA9bXGJcXvZKaWofrRphdJsBWzhyCfH3z

Credits Cost : 1000 Credits For 1 Result(s)

Try it out

Request Example

GET
https://rest.cryptoapis.io/blockchain-tools/xrp/testnet/decode-x-address/TVTMSyg6nRscAm2JtRd8hnpF9nD21CgZx6ibb9iy3EWHotV?context=yourExampleString
Headers
Content-Type: application/json
X-API-Key: my-api-key

Response Example

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "addressTag": 3999472835,
            "classicAddress": "rA9bXGJcXvZKaWofrRphdJsBWzhyCfH3z"
        }
    }
}