---
title: "List coin holders by ID"
method: GET
path: "/v1/coins/{id}/holders"
tags: ["coins"]
---

# List coin holders by ID

`GET /v1/coins/{id}/holders`

Retrieve a paginated list of holders for a coined post

## Path parameters

- `id` string, required

## Query parameters

- `cursor` string
- `limit` integer

## Response `200`

Holders retrieved successfully

- object
  - `items` object[], required — Array of items in this page
    - `walletAddress` string, required — Wallet address of the holder
    - `userId` string — Paragraph user ID if the holder is a registered user
    - `balance` string, required — Token balance held (in wei)
    - `avatarUrl` string, uri — URL to the user's avatar image, if available
  - `pagination` object, required
    - `cursor` string — Cursor for fetching the next page of results
    - `hasMore` boolean, required — Whether more results are available
    - `total` number — Total number of items available

## Other responses

- `404` — Coin not found
- `500` — Internal server error

---

[API](https://skmtc.net/paragraph-xyz/apis/paragraph-api.md) · [All operations](https://skmtc.net/paragraph-xyz/apis/paragraph-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paragraph-xyz/paragraph-api/versions/7bbf1b62c1a0/schema)
