Get Auction Trades
POST/private/NftAuctionTrades
Get NFT auction trades. Returns an array of NFT trades given the requested filters.
Request
- application/x-www-form-urlencoded
Body
required
auction_id string[]nullable
Optional array of auction ids to filter
end_time uint32
Default value: 4294967295
unix time (in seconds) defining the latest trade time
nft_id string[]nullable
Optional array of NFT identifiers to filter
nonce int64required
Nonce used in construction of API-Sign
header
otp stringnullable
start_time uint32
Default value: 0
unix time (in seconds) defining the earliest trade time
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- MOD1
- MOD2
- MOD3
- MOD1
- MOD2
- MOD3
- ]
error string[]required
result object[]nullable
auction_id stringrequired
Auction id
buy_user stringrequired
Social id of the buyer
currency stringrequired
Trade currency
nft_ids string[]required
Array of identifiers of the NFTs traded
price object required
Trade price
oneOf
string
integer
number
sell_user stringrequired
Social id of the seller
time uint64required
Trade time
trade_id stringrequired
Trade id
volume object required
Trade volume
oneOf
string
integer
number
{
"error": [
"EGeneral:Invalid arguments"
],
"result": [
{
"auction_id": "string",
"buy_user": "string",
"currency": "string",
"nft_ids": [
"string"
],
"price": "string",
"sell_user": "string",
"time": 0,
"trade_id": "string",
"volume": "string"
}
]
}
{
"error": [],
"result": [
{
"auction_id": "AJXTPJ-22AZ4-5B72GK",
"trade_id": "TNUH4MT-3CUNP-GM47JM",
"currency": "ETH",
"price": "0.0100000000",
"volume": "1",
"time": 1653673317249460700,
"buy_user": "finish-stumble-seed",
"sell_user": "civil-hire-matrix",
"nft_ids": [
"NT47JJT-TLFPQ-CCBUQI"
]
},
{
"auction_id": "AQIPAV-WXBF4-4X4JMT",
"trade_id": "TNHEJSU-6G27H-T26RUT",
"currency": "ETH",
"price": "0.0100000000",
"volume": "1",
"time": 1653594621912728000,
"buy_user": "choose-math-month",
"sell_user": "civil-hire-matrix",
"nft_ids": [
"NT57U47-ARILO-6MA65G"
]
}
]
}
Loading...