NFT Activities by Token ID
NFT
- NFT Data Overview
- GETNFT Tokens by Contract
- GETNFT Token by Contract and Token ID
- GETNFT Contract
- GETNFT Collections
- GETNFT Listings by Contract Address
- GETNFT Listings by Token ID
- GETNFT Transfers by Token ID
- GETNFT Transfers by Contract Address
- GETNFT Activities by Token ID
- GETNFT Activities by Contract Address
Wallets
Data Transformations
- Data Transformations Overview
- Filter Data Sources
- Filters
- Workflows
Chains
- Overview
- Solana
- Bitcoin
- Ethereum
- Polygon
- Arbitrum
- Base
- Optimism
- Oasys
Deep Dives
NFT Activities by Token ID
Get a list of NFT Activities by token ID.
GET
/
api
/
v1
/
developer
/
nfts
/
activities
/
{chain}
/
{contract_address}
/
{token_id}
curl --request GET \
--url https://api.allium.so/api/v1/developer/nfts/activities/{chain}/{contract_address}/{token_id} \
--header 'X-API-KEY: <api-key>'
{
"items": [
{
"type": "transfer",
"block_timestamp": "<string>",
"transaction_hash": "<string>",
"log_index": 123,
"batch_index": 123,
"from_address": "<string>",
"to_address": "<string>",
"token_address": "<string>",
"token_id": "<string>",
"amount": 123,
"price": {
"asset": {
"type": "native",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"token_id": "<string>"
},
"amount": {
"raw_amount": "<string>",
"amount_str": "<string>",
"amount": 123
}
},
"token_name": "<string>",
"collection_name": "<string>"
}
],
"cursor": "<string>",
"error": "<string>"
}
Authorizations
Headers
Path Parameters
Available options:
ethereum
, abstract
, apechain
, arbitrum
, arbitrum-nova
, avalanche
, base
, optimism
, polygon
, shape
, soneium
, xai
, zero
, zora
Address of the NFT Contract.
Token ID of the NFT.
Response
200
application/json
Successful Response
Available options:
transfer
, sale
, mint
Available options:
native
, evm_erc20
, evm_erc721
, evm_erc1155
, sol_spltoken_legacy
, sol_spltoken_t22
, sol_nft
, btc_inscription
, btc_brc20
, btc_rune
, sui_token
curl --request GET \
--url https://api.allium.so/api/v1/developer/nfts/activities/{chain}/{contract_address}/{token_id} \
--header 'X-API-KEY: <api-key>'
{
"items": [
{
"type": "transfer",
"block_timestamp": "<string>",
"transaction_hash": "<string>",
"log_index": 123,
"batch_index": 123,
"from_address": "<string>",
"to_address": "<string>",
"token_address": "<string>",
"token_id": "<string>",
"amount": 123,
"price": {
"asset": {
"type": "native",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"token_id": "<string>"
},
"amount": {
"raw_amount": "<string>",
"amount_str": "<string>",
"amount": 123
}
},
"token_name": "<string>",
"collection_name": "<string>"
}
],
"cursor": "<string>",
"error": "<string>"
}