VCS API Documentation
VeChain Stats
  • Introduction
  • Getting Started
    • 🗝️Getting an API Key
    • 🔓Authentication
    • 📬Postman
    • ✳️Swagger
  • API Endpoints
    • Account
      • Account Stats
      • ✨Account Extended Stats
      • Account Info
      • ✨Account VTHO Info
      • VET/VTHO Balance
      • ✨Transactions In
      • Transactions Out
      • ✨Token Transfers
      • ✨NFT Transfers
      • ✨DEX Trades
      • DEPRECATED: Internal Transfers
      • Historic VET/VTHO
    • Token
      • Token List
      • Token Info
      • Token Price
      • ✨Token Price List
      • Token Supply
      • ✨VIP180 Balance
      • VIP180 Balance Custom
      • ✨Token Holder List
    • Transaction
      • Transaction Status
      • Transaction Info
    • Block
      • Block Daily Stats
      • Block Info
      • Block Height
      • Block by reference
      • Block by timestamp
    • Contract
      • Contract Stats
      • Contract Info
      • Contract Code
    • NFT
      • NFT Token List
      • NFT Info
      • ✨VIP181 Balance
      • VIP181 Balance Custom
      • ✨NFT Holder List
    • Carbon
      • Address Emission
      • Block Emission
      • Transaction Emission
      • Network Emission
    • Network
      • Network Totals
      • Network Stats
      • Network Gas Stats
      • Authority Nodes
      • ✨Mempool
      • Node Token Count
      • ✨Node Token Stats
      • Thor Instance Size
      • X-Node List
    • API Info
      • API Info
      • API Ping
  • Support
    • FAQ
    • Rate Limits
    • Response HTTP Status
    • Common Error Messages
    • Socials
    • Change Log
  • Visit VeChain Stats
Powered by GitBook
On this page

Was this helpful?

  1. API Endpoints
  2. Account

NFT Transfers

Returns the NFT Transfers where a requested address is either the sender or receiver of an NFT

https://api.vechainstats.com/v2/account/nft-transfers
    ?address=0xeeb0b1ead396b75c820130dafdee2898be939cf6
    &page=1
    &sort=desc
    &VCS_API_KEY=your_api_key
Parameter
Description

address

The address you want to query

page

The integer page number, the available pages are shown in the response meta fields

sort

The sorting preference, use asc to sort by ascending and desc to sort by descending

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": [
        {
            "txid": "0x416cd03a2d43a9979d9035c3fa5445304dfd48e259693d896ee06cd35b6e39e5",
            "clause_index": 4,
            "sender": "0xc3f851f9f78c92573620582bf9002f0c4a114b67",
            "receiver": "0x4d54ebe891682be7847b33163199427bff553fdd",
            "block_height": 18854669,
            "block_timestamp": 1719074630,
            "nft_project_id": "domination",
            "nft_name": "Domination",
            "nft_contract": "0xa01ae12475e8b93e37caa339ef147c1d10cfdee9",
            "nft_token_id": "1260",
            "type": "transfer"
        },
        {
            "txid": "0x416cd03a2d43a9979d9035c3fa5445304dfd48e259693d896ee06cd35b6e39e5",
            "clause_index": 2,
            "sender": "0xc3f851f9f78c92573620582bf9002f0c4a114b67",
            "receiver": "0x4d54ebe891682be7847b33163199427bff553fdd",
            "block_height": 18854669,
            "block_timestamp": 1719074630,
            "nft_project_id": "baby_dragons_singapura",
            "nft_name": "Baby Dragons of Singapura",
            "nft_contract": "0xc22d8ca65bb9ee4a8b64406f3b0405cc1ebeec4e",
            "nft_token_id": "956",
            "type": "transfer"
        },
        {
            "txid": "0x527a120df62585d4c38bf37b37dd5c7a21ff17cec609d26bb3882ef38fb21b75",
            "clause_index": 0,
            "sender": "0xc3f851f9f78c92573620582bf9002f0c4a114b67",
            "receiver": "0x9b8007422d3b5819de89e1201e8ae4c5e1c989d8",
            "block_height": 18132550,
            "block_timestamp": 1711853140,
            "nft_project_id": "vebounce",
            "nft_name": "VeBounce",
            "nft_contract": "0x4167d527340afa546bb88d5d83afb6272e48b40e",
            "nft_token_id": "1406",
            "type": "transfer"
        },
        {
            "txid": "0xa0f20c8b4a0a72feb29409811cf40bbefce8dfccee88ead1ac780457ad0d36c1",
            "clause_index": 0,
            "sender": "0xc3f851f9f78c92573620582bf9002f0c4a114b67",
            "receiver": "0xe53bf1325d099698f6df4bc6098fbd0be2059506",
            "block_height": 18132503,
            "block_timestamp": 1711852670,
            "nft_project_id": "vebounce",
            "nft_name": "VeBounce",
            "nft_contract": "0x4167d527340afa546bb88d5d83afb6272e48b40e",
            "nft_token_id": "1407",
            "type": "transfer"
        }
    ],
    "meta": {
        "address": "0xc3f851f9f78c92573620582bf9002f0c4a114b67",
        "count": 317606,
        "page": 1,
        "pages": 1589,
        "per_page": 200,
        "sort": "desc",
        "timestamp": 1720604002
    }
}
PreviousToken TransfersNextDEX Trades

Last updated 11 months ago

Was this helpful?

✨