---
title: "Get NFT owner history by token"
method: GET
path: "/v1/nft/owner/history"
tags: ["NFT Ownership"]
---

# Get NFT owner history by token

`GET /v1/nft/owner/history`

Get the list of historical owner addresses for a specified NFT token.

## Query parameters

- `chain_id` integer, required — chain network id, see [list of details](/platform/features/api/web3-api)
- `contract_address` string — The address of the NFT contract
- `token_id` string — NFT token id in hex or num string
- `from_block` string — Inclusive from block number (hex string or int)
- `to_block` string — Inclusive to block number (hex string, int, or 'latest')
- `from_timestamp` integer — Inclusive start timestamp
- `end_timestamp` integer — Inclusive end timestamp
- `page` integer — The page offset
- `limit` integer — The desired page size limit. Less or equal than 100

## Headers

- `x-api-key` string, required

## Response `200`

Successful Response

- ResponseGetNFTOwnerHistory
  - `code` integer
  - `message` string
  - `data` NFTTransfers[], required
    - `block_number` integer, required
    - `block_timestamp` string, required
    - `transaction_hash` string, required
    - `transaction_index` integer, required
    - `log_index` integer, required
    - `from_address` string, required
    - `to_address` string, required
    - `operator_address` string, required
    - `token_id` string, required
    - `value` string, required
  - `next_page` integer
  - `count` integer

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity
- `500` — Internal Server Error

---

[API](https://skmtc.net/chainbase/apis/data-cloud-task-api.md) · [All operations](https://skmtc.net/chainbase/apis/data-cloud-task-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chainbase/data-cloud-task-api/versions/4013781aa422/schema)
