curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/addressBook
{
"name": "<string>",
"description": "<string>",
"icon": "<string>",
"website": "<string>",
"address": "<string>"
}
Retrieves information about an address from the address book
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/addressBook
{
"name": "<string>",
"description": "<string>",
"icon": "<string>",
"website": "<string>",
"address": "<string>"
}
addressBook
endpoint retrieves information about a specific address from the TON blockchain’s address book. This can be useful for identifying known entities or contracts on the network.
address
(string, required) — The address to look up in the address book. This should be a raw address format. Example: 0:ed1691307050047117b998b561d8de82d31fbf84910ced6eb5fc92e7485ef8a7
.name
(string) — The name associated with the address, if available.description
(string) — A description of the address or the entity it represents.icon
(string) — URL of an icon associated with the address or entity.website
(string) — Website associated with the address or entity.address
(string) — The queried address, confirming the lookup.addressBook
endpoint can be used in various scenarios:
The address to look up in the address book
Successful response
The response is of type object
.