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

# TokenPriceEventWebhookConditionInput

> Match conditions for token-price threshold events when creating a webhook.

### TypeScript shape

```ts theme={null}
interface TokenPriceEventWebhookConditionInput {
  address: StringEqualsConditionInput;
  networkId: IntEqualsConditionInput;
  priceUsd: ComparisonOperatorInput;
}
```

<ResponseField name="address" type="StringEqualsConditionInput!" required>
  Token contract address. See [StringEqualsConditionInput](/api-reference/graphql/types/StringEqualsConditionInput).

  <Expandable title="View fields (StringEqualsConditionInput)">
    <ResponseField name="eq" type="String!">String value to match exactly.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="networkId" type="IntEqualsConditionInput!" required>
  Network id. See [IntEqualsConditionInput](/api-reference/graphql/types/IntEqualsConditionInput).

  <Expandable title="View fields (IntEqualsConditionInput)">
    <ResponseField name="eq" type="Int!">Integer value to match exactly.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="priceUsd" type="ComparisonOperatorInput!" required>
  Price-in-USD threshold. See [ComparisonOperatorInput](/api-reference/graphql/types/ComparisonOperatorInput).

  <Expandable title="View fields (ComparisonOperatorInput)">
    <ResponseField name="gt" type="String">Strictly greater than.</ResponseField>
    <ResponseField name="gte" type="String">Greater than or equal to.</ResponseField>
    <ResponseField name="lt" type="String">Strictly less than.</ResponseField>
    <ResponseField name="lte" type="String">Less than or equal to.</ResponseField>
    <ResponseField name="eq" type="String">Equal to.</ResponseField>
  </Expandable>
</ResponseField>
