Skip to main content

Orderbook Events

Recent order book events for a given contract address in chronological order

Query Parameters
  • contractAddress string required

    contractAddress/ENS address to query

  • tokenIds string[]

    tokenId to filter for (mint to filter for solana). Can be multiple tokens, comma separated (max 30). If this field is defined but empty, an empty result will be returned

  • interval number

    events since interval seconds ago. Max 3600.

  • marketplaces string[]

    marketplaces to filter for. Can be multiple marketplaces, comma separated, non-case-sensitive. If this field is defined but empty, an empty result will be returned

Responses

Schema
  • data object[] required

    List of order book events

    • eventType string required

      The type of event which occurred, including ASK_CANCELLED, ASK_CREATED, BID_CANCELLED, BID_CREATED, SOLD, TRANSFERRED, EXPIRED

    • timestamp date-time required

      The time this event occurred

    • tokenId string required

      The token id to which the affected order belongs

    • price number

      The price listed for this order.

    • paymentToken string

      The contract address of the currency listed for this order.

    • paymentTokenSymbol string

      The human readable paymentToken for this order

    • expiryDate date-time

      The expiration date of this order

    • marketplace string required

      The marketplace these orders were from

    • orderType string

      The order type of order created if this is an order creation event.

    • quantity number

      The quantity of this order if applicable.