curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/metadata{
"address": "<string>",
"name": "<string>",
"is_scam": true,
"icon": "<string>",
"is_wallet": true
}Query address metadata including names and labels
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/metadata{
"address": "<string>",
"name": "<string>",
"is_scam": true,
"icon": "<string>",
"is_wallet": true
}metadata endpoint queries address metadata from the TON blockchain indexer. This includes human-readable names, scam flags, icons, and other identifying information for known addresses.
address (string, required) — The address to get metadata for.address (string) — The queried address.name (string) — Human-readable name for the address (if known).is_scam (boolean) — Whether the address is flagged as a scam.icon (string) — URL to the address icon (if available).is_wallet (boolean) — Whether the address is a wallet contract.metadata endpoint is valuable for improving user experience and security:
curl -X GET \
'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/metadata?address=EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs' \
-H 'accept: application/json'
is_scam flag before interacting with unknown addresses. This can help protect users from known malicious actors on the network.Address to get metadata for
Was this page helpful?