get https://api.zash.sh/v1/eth/nft/trades/recent
Retrieve recent NFT related trades based on a selected period.
Response is a bulk extract of our enriched dataset containing trades as rows. You can see a sample response here.
Below are definitions for the columns:
Field | Format | Explanation |
---|---|---|
transaction_hash | string | Transaction hash |
buyer | string | Buyer address |
seller | string | Seller address |
collection_address | string | Collection address |
collection_name | string | Collection name |
collection_slug | string | Collection unique slug (Zash). |
token_id | string | Token ID |
price | decimal | Transaction amount paid by the buyer |
currency | enum | Symbol of currency |
marketplace_address | string | Marketplace address |
marketplace_name | string | Unique marketplace name |
block_hash | string | Block hash of trade |
block_number | string | Block number of trade |
is_mint | boolean | Is mint or not |
is_bundle | boolean | Is bundle trade or not |
timestamp | bigint | Block timestamp |
created_at | string | UTC time ISO 8601 format. |
date | string | Date string |
hour | integer | Hour |
And here is a sample record:
{
"transaction_hash": "0xba0828b851ef97ec59d83c8527a04efd9639c017eb5a21dd40a838dfd8aa2ef9",
"buyer": "0x18f2368aB4816dD390E894a9A5b14A5E6DAbF88c",
"seller": "0x3e907F62f02063D27e4e5a5566a3B86D3a12A9bE",
"collection_address": "0x34d85c9CDeB23FA97cb08333b511ac86E1C4E258",
"collection_name": "Otherdeed for Otherside",
"collection_slug": "otherdeed",
"token_id": "95365",
"price": 25.5,
"currency": "ETH",
"marketplace_address": "0x00000000006c3852cbEf3e08E8dF289169EdE581",
"marketplace_name": "opensea",
"block_hash": "0x0f2d292196e2ebac5628831f6a5cef23841359d6a13258e2e9f874682e6cf114",
"block_number": 15163216,
"is_mint": false,
"is_bundle": false,
"timestamp": 1658102154,
"created_at": "2022-07-18 00:59:24",
"date": "2022-07-18",
"hour": 0
}