LogoLogo
HomeMetadata APIAPI PROTwitter
Etherscan
Etherscan
  • Introduction
  • ✨Getting Started
    • Creating an Account
    • Getting an API key
    • Endpoint URLs
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth/Parity Proxy
    • Tokens
    • Gas Tracker
    • Stats
  • 🏆API PRO
    • Etherscan API PRO
    • API PRO Endpoints
    • Metadata API
  • 🧑‍🍳Recipes
    • Get All USDT Transfers from Binance
    • Get the Latest Moonbird NFT Transfers
    • List ETH deposits to Arbitrum Bridge
  • 📖Tutorials
    • Signing Raw Transactions
    • Read/Write Smart Contracts
    • Integrating Google Sheets
  • ✅Contract Verification
    • What's Contract Verification
    • Multichain Verification
    • Supported Chains
    • Common Verification Errors
    • Contract Verification Plugins
  • 🔧Misc Tools & Utilities
    • Libraries
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Getting Help
  • Visit Etherscan.io
Powered by GitBook
On this page
  • 1. Determine the contract address of the Moonbird token
  • 2. Sort by the latest token transfers first
  • 3. Integrate the token IDs and addresses
  • Final Query
  1. Recipes

Get the Latest Moonbird NFT Transfers

PreviousGet All USDT Transfers from BinanceNextList ETH deposits to Arbitrum Bridge

Last updated 3 months ago

Track the latest NFT token transfers of a specific collection, inclusive of token ID and addresses involved!

Endpoint used: ""

1. Determine the contract address of the Moonbird token

Searching "Moonbird" on or referencing their official docs, we can determine the token address to be 0x23581767a106ae21c074b2276D25e5C3e136a68b.

Set this as the contractaddress to filter by token transfers from a specific collection, and omit the address parameter to return transfers from any address.

2. Sort by the latest token transfers first

Set the sort parameter to desc to get the latest transactions first, you can also get the oldest first by flipping it to asc.

3. Integrate the token IDs and addresses

Use the to field representing the address the NFT was sent to, and from being the sender of the NFT.

Final Query

https://api.etherscan.io/api
   ?module=account
   &action=
   &contractaddress=0x23581767a106ae21c074b2276D25e5C3e136a68b
   &page=1
   &offset=100
   &startblock=0
   &endblock=99999999
   &sort=desc
   &apikey=YourApiKeyToken

Try this endpoint in your

🧑‍🍳
🖼️
Get a list of 'ERC721 - Token Transfer Events' by Address
Etherscan
🔗
browser