Skip to main content

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

Success

Schema

    data

    object[]

    required

  • Array [

  • 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

  • ]

Loading...