Get Coin Members
GET/coins/:mint/members
Gets a list of Audius users with a non-zero balance of a specific coin
Request
Path Parameters
mint stringrequired
The mint address of the coin
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: 10
The number of items to fetch
sort_direction string
Possible values: [asc, desc]
Default value: desc
The sort direction for the results
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
required
balance integerrequired
The user's balance of the specific coin (in wei)
user_id stringrequired
The ID of the user with a non-zero balance
{
"data": [
{
"balance": 100000,
"user_id": "7eP5n"
}
]
}
Loading...