Jump to
Ctrl
+
/

List Tokens By Address Synced EVM

GET
/addresses-historical/evm/{blockchain}/{network}/{address}/tokens

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

blockchain string Required
network string Required
address string Required

String identifier of the address

Query Parameters

context string Optional

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.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-12-12
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

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.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

5ca21f92cf5431000105d1a7
hasMore boolean Required

Defines whether or not there are more elements available after this set.

true
nextStartingAfter string Optional

Defines the id of the next page which the next list should start from.

5ca21f92cf5431000105d1a7
sortingOrder string Optional

Defines what the sorting order is either ascending or descending.

ascending
items array Items (object) Required
name string Required

String representation of the token name

Tether
standard string Required

Defines the specific token type.

ERC-20
symbol string Required

String representation of the token symbol

USDT
contractAddress string Required

String representation of contract address of the token that was transfered

0xece01807f7d9b93529174533e997e5de168b0b39
fungibleValues object Required
amount string Required

Token balance

162727.720910848

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "startingAfter": "5ca21f92cf5431000105d1a7",
        "hasMore": true,
        "nextStartingAfter": "5ca21f92cf5431000105d1a7",
        "sortingOrder": "ascending",
        "items": [
            {
                "name": "Tether",
                "standard": "ERC-20",
                "symbol": "USDT",
                "contractAddress": "0xece01807f7d9b93529174533e997e5de168b0b39",
                "fungibleValues": {
                    "amount": "162727.720910848"
                }
            }
        ]
    }
}