Assets
Assets GraphQL API
Loading...
GraphQL
1{
2 assets(
3 user: "address or domain"
4 ) {
5 asset_address
6 balance
7 __typename
8 ... on JettonAssetType {
9 jetton_wallet_address
10 jetton_info {
11 symbol
12 decimals
13 token_type
14 }
15 }
16 ... on StakingAssetType {
17 provider
18 nft_address
19 }
20 ... on TonAssetType {
21 jetton_info {
22 decimals
23 estimate_usd
24 binary_content {
25 icon_view
26 }
27 }
28 }
29 }
30}
GraphQL
1{
2 assets(
3 users: [
4 "address1 or domain1",
5 "address2 or domain2"
6 ]
7 ) {
8 asset_address
9 balance
10 estimate_ton
11 estimate_usd
12 __typename
13 by_user {
14 user_address
15 balance
16 }
17 ... on JettonAssetType {
18 jetton_wallet_address
19 jetton_info {
20 symbol
21 decimals
22 token_type
23 }
24 }
25 ... on StakingAssetType {
26 provider
27 }
28 ... on TonAssetType {
29 jetton_info {
30 decimals
31 }
32 }
33 }
34}
Loading...
GraphQL
1{
2 assets_token_info(address: "EQDP4FKs4AqothucWAPdHJfsntegHdknrwmg8qV9eBVlrWma") {
3 name
4 symbol
5 estimate_usd
6 binary_content {
7 full_view
8 }
9 }
10}
GraphQL
1{
2 assets_token_info(
3 token_type: liquid_pool,
4 estimate_usd__gt: 0 # Exclude shitcoins,
5 page: 0,
6 page_size: 50
7 ) {
8 address
9 name
10 symbol
11 estimate_usd
12 pool_info {
13 asset0 {
14 symbol
15 }
16 asset1 {
17 symbol
18 }
19 }
20 }
21}