Skip to main content

Tron NFT API

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

This Tron 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 in Realtime on Tron​

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

subscription{
Tron {
Transfers(
where: {Transfer: {Currency: {Fungible: false, SmartContract: {is: "TGhdjyV179zisuVX9M1KYw1iVDawwyRfv2"}}}}
) {
Block {
Hash
Number
Time
}
Transfer {
Amount
Currency {
Name
Symbol
Native
}
Sender
Receiver
}
}
}
}