Get hidden coins by user
GET/v1/users/hidden-coins
Get hidden coins by user
This endpoint retrieves hidden coins associated with a user's accounts, supporting pagination, sorting, and filtering. It accepts optional query parameters for sorting (sort_by), ordering (order_by), pagination (page, page_size), and searching (search_by). The endpoint returns a JSON object containing an array of hidden coins along with the total count of such coins.
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
Hidden coins found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
hiddenCoins 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
{
"hiddenCoins": [
{
"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...