Algorand Token transactions on USDC

Hello @fabrice ,

Can you please help us with some apis where we can query the USDC token transactions on Algorand , we need specifically mint and burn operations. Is there a way to query directly from node or any apis for now is fine.

You can check the reserve address by querying asset id: https://indexer.algoexplorerapi.io/v2/assets/31566704?include-all=true

it is 2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM

and then you can check all incomming or outgoing transactions with usdc token from that account:

https://algoexplorer.io/address/2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM

https://mainnet-idx.algonode.cloud/v2/transactions?address=2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM

https://mainnet-idx.algonode.cloud/v2/transactions?address=2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM

https://mainnet-idx.algonode.cloud/v2/transactions?address=2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM&next=g-ONAQAAAAAOAAAA

1 Like

List of public indexer nodes is available here: https://github.com/scholtz/AlgorandPublicData/blob/main/indexer/mainnet-v1.0/public-indexer-providers.json

Accessible to fetch from browsers/other apps: https://scholtz.github.io/AlgorandPublicData/indexer/mainnet-v1.0/public-indexer-providers.json

1 Like

Thanks for helping out with this Apis . Can we get these details from the node . We have an archival node up and running and most of the transactions types are like axfer, do we have any specific types for mint or burn

You need an actual indexer to make such queries.
The indexer is the best way to access and query historical transactions.
This is a separate software from an archival node.

See Indexer - Algorand Developer Portal

1 Like