SDK Explorer

Fetches details of a specific token given its unique identifier. Every token in your network of wallets has a UUID associated with it, regardless of whether it's already recognized or was added as a monitored token.

Parameters
id
string
Required

The universally unique identifier of the resource.

Responses
Example
1from circle.web3 import developer_controlled_wallets
2from circle.web3 import utils
3
4client = utils.init_developer_controlled_wallets_client(api_key=key, entity_secret=entitySecret)
5
6api_instance = developer_controlled_wallets.TokenLookupApi(client)
7
8response = api_instance.get_token_id(id="979869da-9115-5f7d-917d-12d434e56ae7")
9print(response.json())
10
ResponseChoose an example
1{
2  "data": {
3    "token": {
4      "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
5      "name": "",
6      "standard": "ERC20",
7      "blockchain": "MATIC-AMOY",
8      "decimals": 0,
9      "is_native": false,
10      "symbol": "",
11      "token_address": "0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350",
12      "update_date": "2023-01-01T12:04:05Z",
13      "create_date": "2023-01-01T12:04:05Z"
14    }
15  }
16}
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.