Documentation Index
Fetch the complete documentation index at: https://docs.uniblock.dev/llms.txt
Use this file to discover all available pages before exploring further.
Parameters
chainId
string
default:"toncoin"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"getAddressInformation"
required
JSON-RPC method name.
TON address lookup request.Parameters for getAddressInformation:params.address: TON account address.
Returns
TON raw account state.
Account balance in nanotons.
Base64-encoded account code.
Base64-encoded account data.
TON internal transaction identifier.
Transaction logical time.
TON extended block identifier.
Block workchain ID. The masterchain uses -1.
Block shard ID encoded as a signed 64-bit integer string.
Frozen account hash, when present.
Last synchronization Unix timestamp.
Provider-specific response metadata.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=toncoin \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "getAddressInformation",
"params": {
"address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"
}
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}