detectaddress - TON

Example code for the detectaddress JSON-RPC method. Сomplete guide on how to use detectaddress JSON-RPC in GetBlock.io Web3 documentation.

This method returns all possible representations of a TON address: raw (workchain:hex), user-friendly bounceable (EQ…), user-friendly non-bounceable (UQ…), URL-safe encodings, and testnet variants.

Parameters

Parameter
Type
Required
Description

address

string

Yes

Address in any form

Request Example

REST (GET):

curl --location --request GET 'https://go.getblock.io/<ACCESS-TOKEN>/detectAddress?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2' \
--header 'Content-Type: application/json'

JSON-RPC (POST):

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/jsonRPC' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "detectAddress",
    "params": {
        "address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"
    },
    "id": "getblock.io"
}'

Response Example

Response Parameters

Field
Type
Description

result.raw_form

string

Raw workchain:hex representation

result.bounceable.b64

string

User-friendly bounceable address (EQ…) in base64

result.bounceable.b64url

string

User-friendly bounceable address in URL-safe base64

result.non_bounceable.b64

string

User-friendly non-bounceable address (UQ…) in base64

result.non_bounceable.b64url

string

User-friendly non-bounceable address in URL-safe base64

result.given_type

string

Type of the address that was supplied

result.test_only

boolean

Whether the address belongs to the testnet

Use Cases

  • Normalising user-entered addresses across forms

  • Detecting whether a user pasted a testnet address

  • Switching between bounceable and non-bounceable forms based on context (e.g. depositing to a new wallet)

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

422

Validation Error

Request parameters are missing or malformed

429

Too Many Requests

Rate limit exceeded for your plan

504

Lite Server Timeout

Upstream TON liteserver timed out

SDK Integration

Last updated

Was this helpful?