List Tokens By Address
Through this endpoint customers can obtain token data by providing an attribute - address
. The information that can be returned can include the contract address, the token symbol, type and balance.
Path Parameters
-
Requiredblockchain string
Represents the specific blockchain protocol name, e.g. Ethereum, Ethereum Classic, etc.
-
Requirednetwork string
Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "ropsten" are test networks.
-
Requiredaddress string
Represents the public address, which is a compressed and shortened form of a public key.
Query parameters
-
Optionalcontext string
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error.
context
is specified by the user. -
Optionallimit integer
Defines how many items should be returned in the response per page basis.
-
Optionaloffset integer
The starting index of the response items, i.e. where the response should start listing the returned items.
Response schema
Content-Type: application/json
The request has been successful.
Object :
-
RequiredapiVersion string
Specifies the version of the API that incorporates this endpoint.
Example : 2021-03-20 -
RequiredrequestId string
Defines the ID of the request. The
requestId
is generated by Crypto APIs and it's unique for every request.Example : 601c1710034ed6d407996b30 -
Optionalcontext string
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error.
context
is specified by the user.Example : yourExampleString -
Requireddata object
-
Requiredlimit integer
Defines how many items should be returned in the response per page basis.
Example : 50 -
Requiredoffset integer
The starting index of the response items, i.e. where the response should start listing the returned items.
Example : 0 -
Requiredtotal integer
Defines the total number of items returned in the response.
Example : 100 -
Requireditems arrayExample : Array ( )
-
RequiredconfirmedBalance string
Defines the token balance that has been confirmed.
Example : 287090.926632 -
RequiredcontractAddress string
Represents the contract address of the token, which controls its logic. It is not the address that holds the tokens.
Example : 0xdac17f958d2ee523a2206206994597c13d831ec7 -
Requiredname string
Defines the token's name as a string.
Example : Tether USD -
Requiredsymbol string
Defines the token symbol by which the token contract is known. It is usually 3-4 characters in length.
Example : USDT -
Requiredtype string
Defines the specific token type.
Example : ERC-20
-
-