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

# CreatePriceWebhooksInput

> Input for creating price webhooks.

<div data-generated>
  ## GraphQL

  ```
  input CreatePriceWebhooksInput {
    webhooks: [CreatePriceWebhookArgs!]!
  }

  enum AlertRecurrence {
    INDEFINITE
    ONCE
  }

  input StringEqualsConditionInput {
    eq: String!
  }

  input IntEqualsConditionInput {
    eq: Int!
  }

  input ComparisonOperatorInput {
    gt: String
    gte: String
    lt: String
    lte: String
    eq: String
  }

  input PriceEventWebhookConditionInput {
    tokenAddress: StringEqualsConditionInput!
    networkId: IntEqualsConditionInput!
    priceUsd: ComparisonOperatorInput!
    pairAddress: StringEqualsConditionInput
    volumeUsd: ComparisonOperatorInput
    liquidityUsd: ComparisonOperatorInput
  }

  input RetrySettingsInput {
    maxTimeElapsed: Int
    minRetryDelay: Int
    maxRetryDelay: Int
    maxRetries: Int
  }

  input BucketKeyInput {
    bucketId: String!
    bucketSortKey: String!
  }

  enum PublishingType {
    BATCH
    SINGLE
  }

  input CreatePriceWebhookArgs {
    name: String!
    callbackUrl: String!
    securityToken: String!
    alertRecurrence: AlertRecurrence!
    conditions: PriceEventWebhookConditionInput!
    retrySettings: RetrySettingsInput
    bucketKey: BucketKeyInput
    publishingType: PublishingType
    deduplicate: Boolean
  }
  ```

  ### Used By

  **Used as input by**

  * [createWebhooks](/api-reference/mutations/createwebhooks.md): Create event webhooks for price, token/pair, transfer, market cap, and prediction market trades.
</div>
