Logo
Covalent API Documentation

getNftTransactionsForContractTokenId

GET https://api.covalenthq.com/v1/:chainName/tokens/:contractAddress/nft_transactions/:tokenId/?no-spam=

Returns: NftTransactionsResponse

{
  "updated_at" : "{{DATETIME}}",
  "chain_id" : "{{INTEGER}}",
  "chain_name" : "{{STRING}}",
  "items" : [ {
    "contract_decimals" : "{{INTEGER}}",
    "contract_name" : "{{STRING}}",
    "contract_ticker_symbol" : "{{STRING}}",
    "logo_url" : "{{STRING}}",
    "contract_address" : "{{STRING}}",
    "supports_erc" : [ "{{STRING}}" ],
    "nft_transactions" : [ {
      "block_signed_at" : "{{DATETIME}}",
      "block_height" : "{{INTEGER}}",
      "tx_hash" : "{{STRING}}",
      "tx_offset" : "{{INTEGER}}",
      "successful" : "{{BOOLEAN}}",
      "from_address" : "{{STRING}}",
      "from_address_label" : "{{STRING}}",
      "to_address" : "{{STRING}}",
      "to_address_label" : "{{STRING}}",
      "value" : "{{STRING}}",
      "value_quote" : "{{DOUBLE}}",
      "pretty_value_quote" : "{{STRING}}",
      "gas_offered" : "{{STRING}}",
      "gas_spent" : "{{STRING}}",
      "gas_price" : "{{STRING}}",
      "fees_paid" : "{{STRING}}",
      "gas_quote" : "{{DOUBLE}}",
      "pretty_gas_quote" : "{{STRING}}",
      "gas_quote_rate" : "{{DOUBLE}}",
      "log_events" : [ {
        "block_signed_at" : "{{DATETIME}}",
        "block_height" : "{{INTEGER}}",
        "tx_offset" : "{{INTEGER}}",
        "log_offset" : "{{INTEGER}}",
        "tx_hash" : "{{STRING}}",
        "raw_log_topics" : [ "{{STRING}}" ],
        "sender_contract_decimals" : "{{INTEGER}}",
        "sender_name" : "{{STRING}}",
        "sender_contract_ticker_symbol" : "{{STRING}}",
        "sender_address" : "{{STRING}}",
        "sender_address_label" : "{{STRING}}",
        "sender_logo_url" : "{{STRING}}",
        "raw_log_data" : "{{STRING}}",
        "decoded" : {
          "name" : "{{STRING}}",
          "signature" : "{{STRING}}",
          "params" : [ {
            "name" : "{{STRING}}",
            "type" : "{{STRING}}",
            "indexed" : "{{BOOLEAN}}",
            "decoded" : "{{BOOLEAN}}",
            "value" : "{{STRING}}"
          } ]
        }
      } ]
    } ],
    "is_spam" : "{{BOOLEAN}}"
  } ]
}

 

Body PARAM

Key Datatype Required Description 
no-spam
null



HEADERS

Key Datatype Required Description 
Content-Type
string




RESPONSES

status



Curl
curl -X GET 'https://api.covalenthq.com/v1/:chainName/tokens/:contractAddress/nft_transactions/:tokenId/?no-spam=?no-spam=' -H 'Content-Type: application/json'

ENDPOINTS