Get NFT transactions of an address

Get NFT transactions of an address

Sample Request

curl --request GET \
     --url 'https://api.0xscope.com/v2/address/NFTtransactions?address=0x097703c488ecc613b6b6bfd419893be1625d28ba&chain=ethereum&limit=10&page=1' \
     --header 'API-KEY: your-api-key' \
     --header 'accept: */*'

Sample Response

{
  "code": 0,
  "data": {
    "total": 2,
    "limit": 10,
    "page": 1,
    "rows": [
      {
        "txhash": "0x15b1711613921f9d3b10f46dec9146b8aa5f398bcd793ae82f64f2c5bfb75924",
        "timestamp": 1681449515,
        "action": "buy",
        "from": "0x0bfff40545a2250c3f11993e7b75dbbcb11e36ac",
        "to": "0x097703c488ecc613b6b6bfd419893be1625d28ba",
        "quantity": "Single",
        "token_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
        "token_id": "5992",
        "token_name": "",
        "price": 58.9
      },
      {
        "txhash": "0x94c6adb3b4f23fcf01df4bbbaf6728bc65506fbc53bf1159c1f5b6060a09e0b7",
        "timestamp": 1681447739,
        "action": "sell",
        "from": "0x097703c488ecc613b6b6bfd419893be1625d28ba",
        "to": "0xa3e0c08ac55c3da4d19028876ad305119062cf71",
        "quantity": "Single",
        "token_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
        "token_id": "390",
        "token_name": "",
        "price": 53.63
      }
    ]
  },
  "uuid": 1656858656798802000
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!