addressBook - Ton
addressBook. Retrieves information about an address from the address book
addressBook - ton [Value: 100CU]
Retrieves information about address from address book
Use cases
- Retrieve data from the TON address book
- Access details of registered addresses
- Audit address book entries
Constraints
- Requires valid entry ID
- Supports Address Book V3 only
- Depends on sync
Unlock Access to 50+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl --request GET \
--url 'https://ton.drpc.org/rest/api/v3/addressBook?address=0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef' \
--header 'accept: application/json'
Response
200
{
"ok": true,
"result": {
"address": "0:ed1691307050047117b998b561d8de82d31fbf84910ced6eb5fc92e7485ef8a7",
"nickname": "My Example Address",
"created_at": 1693527600,
"tags": [
"wallet",
"important"
],
"description": "This is a sample address used for testing and transactions."
}
}
Request params
string
addressstring
Identifier of the target TON account in any form.
Response
200
Response params
object
okboolean
Indicates if the request was successful.
resultobject
Details of the address.
object
addressstring
Unique identifier of the address.
nicknamestring
Nickname assigned to the address.
created_atinteger
Unix timestamp when the address was created.
tagsarray
List of tags associated with the address.
object
descriptionstring
Description of the address.