> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codex.io/llms.txt
> Use this file to discover all available pages before exploring further.

# EventsQueryInput

> Input type of `EventsQuery`.

<div data-generated>
  ## GraphQL

  ```
  input EventsQueryInput {
    address: String!
    quoteToken: QuoteToken
    amountNonLiquidityToken: NumberFilter
    eventDisplayType: [EventDisplayType]
    eventType: EventType
    maker: String
    networkId: Int!
    timestamp: EventQueryTimestampInput
    priceBaseToken: NumberFilter
    priceBaseTokenTotal: NumberFilter
    priceUsd: NumberFilter
    priceUsdTotal: NumberFilter
    symbolType: SymbolType
  }

  enum QuoteToken {
    token0
    token1
  }

  input NumberFilter {
    gte: Float
    gt: Float
    lte: Float
    lt: Float
  }

  enum EventDisplayType {
    Burn
    Mint
    Buy
    Sell
    Sync
    Collect
    CollectProtocol
  }

  enum EventType {
    Burn
    Mint
    Swap
    Sync
    Collect
    CollectProtocol
    PoolBalanceChanged
    LiquidityLock
  }

  input EventQueryTimestampInput {
    from: Int!
    to: Int!
  }

  enum SymbolType {
    TOKEN
    POOL
  }
  ```

  ### Used By

  **Used as input by**

  * [getTokenEvents](/api-reference/queries/gettokenevents.md): Returns transactions for a pair.
</div>
