GET
/
api
/
v1
/
developer
/
nfts
/
transfers
/
{chain}
/
{contract_address}
curl --request GET \
  --url https://api.allium.so/api/v1/developer/nfts/transfers/{chain}/{contract_address} \
  --header 'X-API-KEY: <api-key>'
{
  "items": [
    {
      "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,
      "token_name": "<string>",
      "collection_name": "<string>"
    }
  ],
  "cursor": "<string>",
  "error": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Headers

x-allium-team-id
string

Path Parameters

chain
enum<string>
required
Available options:
ethereum,
abstract,
apechain,
arbitrum,
arbitrum-nova,
avalanche,
base,
optimism,
polygon,
shape,
soneium,
xai,
zero,
zora
contract_address
string
required

Address of the NFT Contract.

Query Parameters

cursor
string

Cursor to paginate through results.

limit
integer
default:20

Number of items to return in a response.

Required range: 1 <= x <= 50

Response

200
application/json
Successful Response
items
object[]
cursor
string
error
string