Get Wallet Coins
GET/wallet/:walletId/coins
Gets a list of the coins held by a wallet address and their balances
Request
Path Parameters
walletId stringrequired
A Solana wallet address
Query Parameters
offset integer
Default value: 0
The number of items to skip. Useful for pagination (page number * limit)
limit integer
Possible values: >= 1 and <= 100
Default value: 50
The number of items to fetch
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
required
mint stringrequired
The coin mint address
ticker stringrequired
The coin symbol
decimals integerrequired
The number of decimals for the coin
owner_id stringrequired
The ID of the user associated with the coin
logo_uri stringnullable
URL to the coin's logo image
banner_image_url stringnullable
URL to the coin's banner image
has_discord booleanrequired
Whether the coin has a Discord server
balance integerrequired
The balance of the coin in the user's account (in wei)
balance_usd numberrequired
The balance of the coin in the user's account in USD
{
"data": [
{
"mint": "9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM",
"ticker": "$AUDIO",
"decimals": 8,
"owner_id": "7eP5n",
"logo_uri": "https://example.com/logo.png",
"banner_image_url": "https://example.com/banner.png",
"has_discord": true,
"balance": 1000000000,
"balance_usd": 1.23
}
]
}
Loading...