---
title: "List all NFT owners"
method: GET
path: "/v1/chains/{chain_name}/nft-owners"
tags: ["nft owners"]
---

# List all NFT owners

`GET /v1/chains/{chain_name}/nft-owners`

List all NFT owners on a chain

## Path parameters

- `chain_name` string, required — The name of chain

## Query parameters

- `from_updated_at` string, date-time
- `page_cursor` string — Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
- `page_size` integer — Maximum number of items to return

## Response `200`

200 response

- ListNFTOwnersResult
  - `result` NFTOwner[], required — List of nft owners
    - `chain` Chain, required — The chain details
      - `id` string, required — The id of chain
      - `name` string, required — The name of chain
    - `contract_address` string, required — The address of NFT contract
    - `token_id` string, required — An `uint256` token id as string
    - `account_address` string, required — The account address of the owner of the NFT
    - `balance` string, required — The amount of owned tokens (uint256 as string)
    - `updated_at` string, date-time — When the NFT owner was last updated
  - `page` Page, required — Pagination properties
    - `previous_cursor` string, nullable, required — First item as an encoded string
    - `next_cursor` string, nullable, required — Last item as an encoded string

## Other responses

- `400` — Bad Request (400)
- `404` — The specified resource was not found (404)
- `500` — Internal Server Error (500)

---

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