Skip to main content

Base Chain NFT API

In this section we'll have a look at some examples using the Base NFT API.

This Base API is part of our Early Access Program (EAP), which is intended for evaluation purposes.

This program allows you to test the data and its integration into your applications before full-scale implementation. Read more here

Track transfers of an NFT​

This query subscribes you to the real time transfers of a specific non-fungible token (NFT) on the Base network. You can find the query here

subscription {
EVM(network: base) {
Transfers(
where: {
Transfer: {
Currency: {
Fungible: false
SmartContract: { is: "0x1195Cf65f83B3A5768F3C496D3A05AD6412c64B7" }
}
}
}
) {
Block {
Hash
Number
}
Transfer {
Amount
Currency {
Name
Symbol
Native
}
Sender
Receiver
}
}
}
}