Skip to main content

Get Auctions

GET 

/public/NftAuctions

Get NFT auctions. Returns information about a specific auction. The auction can be retrieved by either the auction identifier or the NFT identifier.

Request

Query Parameters

    auction_id string
    end_time uint32

    Default value: 4294967295

    nft_id string[]
    offset uint32
    pos uint32
    start_time uint32

    Default value: 0

    status stringrequired

    Possible values: [open, closed, expired]

Responses

Response

Schema
    error string[]required
    result object[]nullable
  • Array [
  • auction_id stringrequired

    Auction id

    bids object[]required

    Array of bids

  • Array [
  • amount object required

    An amount, either as a string, and integer, or a decimal value

    oneOf

    string

    auction_id stringnullable
    currency stringrequired
    id stringrequired
    lock_time uint64required
    nft_ids string[]required
    social_id stringrequired
    status stringrequired

    Possible values: [Open, Cancelled, Filled, PartialFilled, Superceded]

    status_detail stringrequired
    time uint64required
    type stringrequired

    Possible values: [Sell, Buy, Offer]

    usd_equivalence object required

    An amount, either as a string, and integer, or a decimal value

    oneOf

    string

    volume uint64required
  • ]
  • buyout_price object

    Optional buyout price (price at which an item can be immediately purchased)

    oneOf

    string

    expiry_time uint32nullable

    unix time (in seconds) defining the expiry time of the auction

    extension_time uint32nullable

    Time in seconds defining the extension time

    nft_ids string[]required

    Array of NFT identifiers

    quote_currency stringrequired

    Currency for sale

    reserve_price object

    Optional minimum price at which the item can be sold

    oneOf

    string

    root_id stringrequired

    If auction was created to match an existing offer, offer id will be the auction's root id

    start_time uint32nullable

    unix time (in seconds) defining the start time of the auction

    status stringrequired

    Possible values: [open, closed, expired]

    Auction status

    status_detail stringrequired

    Auction status detail

    type stringrequired

    Possible values: [fixed, ascending]

    Auction type

    user stringrequired

    Social id of the selling user

  • ]
Loading...