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:"getTokenData"
required
JSON-RPC method name.
TON token data request.Parameters for getTokenData:params.address: NFT collection/item or Jetton master/wallet smart contract address.
Returns
TON NFT or Jetton token data.
Jetton total supply, when the address is a Jetton master.
Whether additional Jettons may be minted.
Base64-encoded Jetton wallet code.
Detected token contract type.
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": "getTokenData",
"params": {
"address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"
}
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}