- Intro
- History
- State
- Tokens
- Submit new transaction
Balances of tokens
POST
https://api.trait.tech/tokens/balances
Tokens
Request params allow to precisely select tokens to fetch.
And request params allow to configure the range of interested addresses,
including the filtering by prameters of blockchain addresses such as type of address, app agent ID, TA ID etc.
Response contains the list of matching token transfers.
Request
Body Params application/json
Request
Any of
/tokens/balances
.Example:
{"block":"blockchain_head","owner":"ttnCSi8iaGuFXTRvdrzn17cVyUfnHeWqF91sdksdXB19V9y4j","token":[{"token_type":"nft","nft_collection_id":17},"TRAIT"]}
block
Block
owner
Owner
token
Token
presentation
object
TokensBalancesPresentation
/tokens/balances
.Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.trait.tech/tokens/balances' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
Response schema for the endpoint `/tokens/balances`.
metadata
object (ResponseMetadataPaged)
required
request_context
object (ResponseBlockId)
required
blockchain_head
object (ResponseBlockId)
required
pagination
object (ResponsePaginationData)
required
data
array [anyOf]
Data
object (TokenBalanceNative)
optional
object (TokenBalanceFungible)
optional
object (TokenBalanceNft)
optional
Example
{
"metadata": {
"request_context": {
"block_hash": "0xab8006019066f080402ab43da043127b930ef0ffb3349a333222d67c0f542338",
"block_index": 29702,
"block_timestamp": 1727581488000
},
"blockchain_head": {
"block_hash": "0xab8006019066f080402ab43da043127b930ef0ffb3349a333222d67c0f542338",
"block_index": 29702,
"block_timestamp": 1727581488000
},
"pagination": {
"current_page": 0,
"next_page_id": "109924cd-b827-4eb1-8901-1f45d2d753e9"
}
},
"data": [
{
"token_type": "TRAIT",
"owner": {
"address": "ttodYEVA917tPqpseDdLP4NhMJUkCQHJU4T7zcT4TCYM3PKxQ",
"account_id": "0x6d6f646c506f745374616b650000000000000000000000000000000000000000",
"address_type": "regular",
"app_agent_id": null,
"ta_id": null,
"address_name": null
},
"owner_balance": -28394434091
},
{
"token_type": "TRAIT",
"owner": {
"address": "ttn8KQhZ3gsKkryZoKWFdGnEV4C5WDhpyXinEVQVu1v2HA7Xs",
"account_id": "0x2ae9df7cc0678eb17e196ab2638689eefebfffe3c7c75b7f5bb8ccb501a25f7f",
"address_type": "regular",
"app_agent_id": null,
"ta_id": null,
"address_name": null
},
"owner_balance": 28394437491
},
{
"token_type": "fungible",
"fungible_token_id": 32,
"fungible_token_manager": {
"address": "ttmMsYRqsnrKY5DNTZY3rBCUHq7s191wKvWQXnrfb7xeADJGC",
"account_id": "0x0904000001d5006fd044601bad51baedee11be3f4247c688310084e17d778170",
"address_type": "app_agent",
"app_agent_id": 1033,
"ta_id": null,
"address_name": null
},
"owner": {
"address": "ttrENnXUfsdTDFwweKjK1dSvCXcAtVVQ9xgARy8iBisAFfc5e",
"account_id": "0xe079a519da31f627a19daf986c30d63ea24c6ce8762a19487d88077aaf1cc033",
"address_type": "regular",
"app_agent_id": null,
"ta_id": null,
"address_name": null
},
"owner_balance": 45
},
{
"token_type": "fungible",
"fungible_token_id": 32,
"fungible_token_manager": {
"address": "ttmMsYRqsnrKY5DNTZY3rBCUHq7s191wKvWQXnrfb7xeADJGC",
"account_id": "0x0904000001d5006fd044601bad51baedee11be3f4247c688310084e17d778170",
"address_type": "app_agent",
"app_agent_id": 1033,
"ta_id": null,
"address_name": null
},
"owner": {
"address": "ttnHxmq7B2xwZnG28puQCw8kgxsXY4yKvucRzRHqJq2gftLW6",
"account_id": "0x3244dc7318398fe43dd214d0ffdd1f8d0603a73fc286f4d758caaf5bbfddf702",
"address_type": "regular",
"app_agent_id": null,
"ta_id": null,
"address_name": null
},
"owner_balance": 55
},
{
"token_type": "nft",
"nft_collection_id": 17,
"nft_collection_manager": {
"address": "ttmMsYRqsnrKY5DNTZY3rBCUHq7s191wKvWQXnrfb7xeADJGC",
"account_id": "0x0904000001d5006fd044601bad51baedee11be3f4247c688310084e17d778170",
"address_type": "app_agent",
"app_agent_id": 1033,
"ta_id": null,
"address_name": null
},
"nft_item_id": 754266,
"owner": {
"address": "ttnCSi8iaGuFXTRvdrzn17cVyUfnHeWqF91sdksdXB19V9y4j",
"account_id": "0x2e0f6e39e5306a3905d31c3edff91c53059ddfbd4ec7fe93ea515b5b3bad7e29",
"address_type": "regular",
"app_agent_id": null,
"ta_id": null,
"address_name": null
}
}
]
}
🟠422Parameter Error
Modified at 2024-11-21 18:59:09