Retrieve historical transactions for any Ethereum NFT since 2022. You can get trades by wallet address, by contract, between blocks, by block, by token ID, and so on.

API detailed page: [link]

Transformation Logic:

SELECT * FROM nft.ethereum_trades
WHERE DATE(block_time) >= CAST(date_parse('Jan-01-2022', '%M-%d-%Y') AS DATE); 
Language
Click Try It! to start a request and see the response here!