Skip to main content
Version: 2.2

Get NFT transfers by token ID

Don't have an API key yet?

Start using this API for your project today.

Get your free API key
GEThttps://deep-index.moralis.io/api/v2.2/nft/:address/:token_id/transfers

Get transfers of an NFT given a contract address and token ID.

PATH PARAMS
addressstringrequired
The address of the NFT contract
token_idstringrequired
The ID of the token
QUERY PARAMS
chainstring
The chain to query
formatstring
The format of the token ID
limitnumber
The desired page size of the result.
orderstring
The order of the result, in ascending (ASC) or descending (DESC)
cursorstring
The cursor returned in the previous response (used for getting the next page).
Responses
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = await Moralis.EvmApi.nft.getNFTTransfers({
"chain": "0x1",
"format": "decimal",
"order": "DESC",
"address": "0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB",
"tokenId": "1"
});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"page": "2",
"page_size": "100",
"cursor": "",
"result": {
"token_address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",
"token_id": "15",
"from_address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",
"from_address_label": "",
"to_address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",
"to_address_label": "",
"value": "1000000000000000",
"amount": "1",
"contract_type": "ERC721",
"block_number": "88256",
"block_timestamp": "2021-06-04T16:00:15",
"block_hash": "",
"transaction_hash": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",
"transaction_type": "",
"transaction_index": "",
"log_index": "",
"operator": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",
"possible_spam": "false",
"verified_collection": "false"
},
"block_exists": true,
"index_complete": true
}