๐Get an Item's History
Get an item's transaction history
Returns the blockchain history of an item
GET
https://api.alturanft.com/api/v2/item/events/:address/:tokenId
Takes a collection address and tokenId and returns that item's blockchain history (mint, transfers, listed, delisted, sell, etc)
Path Parameters
Name
Type
Description
address*
String
The item's collection address
tokenId*
Integer
The item's tokenId
Query Parameters
Name
Type
Description
perPage
Integer
The number of users to return
(default: 24)
page
Integer
The offset for returned users. Calculated as (page - 1) * perPage
(default: 1)
{
// Response
}
Event Schema
{
id: string
amount: string
blockNumber: number
chainId: number
event: string
from: string
itemCollection: string
itemRef: string
timestamp: number
to: string
tokenId: number
transactionHash: string
}
Last updated
Was this helpful?