Skip to main content

Get Auction Trades

POST 

/private/NftAuctionTrades

Get NFT auction trades. Returns an array of NFT trades given the requested filters.

Request

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

Response

Schema
    error string[]required
    result object[]nullable
  • Array [
  • 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

    sell_user stringrequired

    Social id of the seller

    time uint64required

    Trade time

    trade_id stringrequired

    Trade id

    volume object required

    Trade volume

    oneOf

    string

  • ]
Loading...