Get displayed coins by user
GET/v1/users/displayed-coins
Get displayed coins by user
This endpoint retrieves a paginated list of cryptocurrencies displayed by a user, including tokens and native coins across multiple wallets. It supports sorting and filtering based on various parameters such as symbol, name, and balance. Additionally, it allows searching for specific coins and excludes hidden assets from the results. This endpoint is designed to provide a comprehensive view of a user's cryptocurrency holdings, tailored to their preferences and settings.
Request
Query Parameters
sort_by string
Sort by
order_by string
Order by
page int32
Page
page_size int32
Page size
search_by string
Search by
Responses
- 200
- 204
- 500
Displayed coins found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
displayedCoins object[]required
accountId uuidnullable
balance floatrequired
blockchain objectnullable
chainId int32nullable
name stringnullable
shortChainId stringnullable
shortName stringnullable
decimals int32nullable
fiat object[]nullable
balance doublerequired
symbol stringnullable
tokenValue doublerequired
logo stringnullable
name stringrequired
possibleSpam booleanrequired
symbol stringrequired
thumbnail stringnullable
tokenAddress stringrequired
total int64required
{
"displayedCoins": [
{
"accountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"balance": 0,
"blockchain": {
"chainId": 0,
"name": "string",
"shortChainId": "string",
"shortName": "string"
},
"decimals": 0,
"fiat": [
{
"balance": 0,
"symbol": "string",
"tokenValue": 0
}
],
"logo": "string",
"name": "string",
"possibleSpam": true,
"symbol": "string",
"thumbnail": "string",
"tokenAddress": "string"
}
],
"total": 0
}
No content
- text/plain
- Schema
Schema
string
Internal server error
- text/plain
- Schema
Schema
string
Loading...