---
title: "Get Owners"
method: GET
path: "/v1/tokens/{chainId}/{address}/owners"
tags: ["Tokens"]
---

# Get Owners

`GET /v1/tokens/{chainId}/{address}/owners`

Retrieves a paginated list of owners for a given token contract on a specific chain. Supports ERC-20 tokens, ERC-721 NFTs, and ERC-1155 tokens:

- **ERC-20**: No `tokenId` provided - returns token holders with balances
- **NFT Collection**: No `tokenId` provided - returns all owners of any token in the collection
- **Specific NFT**: `tokenId` provided - returns owner(s) of that specific token ID

The token standard is automatically detected using ERC165 interface detection when needed.

**Authentication**: Pass `x-client-id` header for frontend usage from allowlisted origins or `x-secret-key` for backend usage.

## Path parameters

- `chainId` integer, required — The blockchain network identifier. Common values include: 1 (Ethereum), 8453 (Base), 137 (Polygon), 56 (BSC), 43114 (Avalanche), 42161 (Arbitrum), 10 (Optimism).
- `address` string, required — A valid Ethereum address (0x-prefixed hex string) or ENS name (e.g., vitalik.eth).

## Query parameters

- `tokenId` string, nullable — Optional token ID for NFT owners. If provided, returns owners of the specific NFT token.
- `limit` integer — Number of owners to return per page (1-100).
- `page` integer — Page number for pagination, starting from 1.

## Response `200`

Token owners retrieved successfully. Returns owners with pagination information. For ERC-20 tokens, `amount` represents token balance. For NFTs, `amount` represents quantity owned (usually '1' for ERC-721, can be >1 for ERC-1155).

- object
  - `result` object, required
    - `owners` object[], required — Array of token owners with amounts.
      - `address` string, required — Owner wallet address
      - `amount` string, required — Token amount owned as a string
      - `tokenId` string — Token ID for NFTs
    - `pagination` object, required
      - `hasMore` boolean — Whether there are more items available
      - `limit` number, nullable — Number of items per page
      - `page` number, nullable — Current page number
      - `totalCount` number, nullable — Total number of items available

## Other responses

- `400` — Invalid request parameters.
- `401` — Authentication required. The request must include a valid `x-client-id` header for frontend usage or `x-secret-key` for backend usage.
- `404` — Token not found or no owners available.
- `500` — Internal server error.

---

[API](https://skmtc.net/thirdweb/apis/thirdweb-api.md) · [All operations](https://skmtc.net/thirdweb/apis/thirdweb-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/thirdweb/thirdweb-api/revisions/fb4cb67da1c7/schema)
