---
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

## Changes

- **2026-05-07** `90de04b87133` — 2 warning
  - removed the optional property `error` from the response with the `404` status
  - removed the optional property `error` from the response with the `500` status
- **2025-09-10** `65823ed2a0fd` — 1 breaking
  - removed the required property `items/items/supportedAt` from the response with the `200` status
- **2025-09-09** `6c07fdbbe224` — 1 warning
  - deleted the `path` request parameter `contractAddress`

[Change history](https://skmtc.dev/paragraph-xyz/apis/paragraph-api/changes/v1/coins/:id/holders/get.md)

---

[API](https://skmtc.dev/paragraph-xyz/apis/paragraph-api.md) · [All operations](https://skmtc.dev/paragraph-xyz/apis/paragraph-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/paragraph-xyz/paragraph-api/revisions/c148c610fb95/schema)
