> ## 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.

# TokenTransferEventWebhookCondition

> Webhook conditions for a token transfer event.

<div data-generated>
  ## GraphQL

  ```
  type TokenTransferEventWebhookCondition {
    tokenAddress: StringEqualsCondition
    networkId: OneOfNumberCondition
    address: StringEqualsCondition
    direction: OneOfTokenTransferDirectionCondition
  }

  type StringEqualsCondition {
    eq: String!
  }

  type OneOfNumberCondition {
    oneOf: [Int!]!
  }

  enum TokenTransferDirection {
    FROM
    TO
  }

  type OneOfTokenTransferDirectionCondition {
    oneOf: [TokenTransferDirection!]!
  }
  ```

  ### Used By

  **Returned by**

  * [createWebhooks](/api-reference/mutations/createwebhooks.md): Create event webhooks for price, token/pair, transfer, market cap, and prediction market trades.
  * [getWebhooks](/api-reference/queries/getwebhooks.md): Returns a user's list of webhooks.
</div>
