Skip to main content

Polygon (MATIC) NFT API

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

Track transfers of an NFT in Realtime

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

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