/asset-events/:asset_contract/:token_id

Get events of NFT token.

GET https://api.nftbank.ai/estimates-v2/asset-events/:asset_contract/:token_id?chain_id=ETHEREUM

This endpoint allows you to get dapp info.

Path Parameters

NameTypeDescription

asset_contract

string

Asset contract address

Query Parameters

NameTypeDescription

chain_id

string

Chain ID ("ETHEREUM", "MATIC", "KLAYTN", default: "ETHEREUM")

Headers

NameTypeDescription

x-api-key

string

API key request via [API key request] link.

{
    "data": [
        {
            "amount": 1.0,
            "asset_contract": "0xd8b7cc75e22031a72d7b8393113ef2536e17bde6",
            "block_timestamp": "Sun, 17 Oct 2021 12:09:44 GMT",
            "buyer_address": "0x4337a241dd81f774017db547c789f067f68f8501",
            "seller_address": "0x0000000000000000000000000000000000000000",
            "sold_price_eth": 0.1,
            "sold_price_usd": 385.4498461449342,
            "token_id": "1000100971",
            "transaction_hash": "0xa9b61b98936b81a585ea333dc6b0b60724b86bfc01febb083ae240eaaf192c6b"
        }
    ],
    "response": 200
}

curl request example

curl -i -H "x-api-key: YOUR_API_KEY" \
  "https://api.nftbank.ai/estimates-v2/asset-events/:asset_contract/:token_id?chain_id=ETHEREUM"curl 

curl response example

{
    "data": [
        {
            "amount": 1.0,
            "asset_contract": "0xd8b7cc75e22031a72d7b8393113ef2536e17bde6",
            "block_timestamp": "Sun, 17 Oct 2021 12:09:44 GMT",
            "buyer_address": "0x4337a241dd81f774017db547c789f067f68f8501",
            "seller_address": "0x0000000000000000000000000000000000000000",
            "sold_price_eth": 0.1,
            "sold_price_usd": 385.4498461449342,
            "token_id": "1000100971",
            "transaction_hash": "0xa9b61b98936b81a585ea333dc6b0b60724b86bfc01febb083ae240eaaf192c6b"
        }
    ],
    "response": 200
}

Last updated