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

# WebhookType

> Category of a webhook subscription.

### TypeScript shape

```ts theme={null}
type WebhookType =
  | 'PRICE_EVENT'
  | 'TOKEN_PAIR_EVENT'
  | 'RAW_TRANSACTION'
  | 'MARKET_CAP_EVENT'
  | 'TOKEN_PRICE_EVENT'
  | 'TOKEN_TRANSFER_EVENT'
  | 'PREDICTION_TRADE'
  | 'PREDICTION_MARKET_METRICS_EVENT';
```

Only the four supported variants are returned by [getWebhooks](/api-reference/graphql/queries/getWebhooks).

<ResponseField name="TOKEN_PAIR_EVENT" type="enum">Pair-level events (swap / mint / burn).</ResponseField>
<ResponseField name="TOKEN_PRICE_EVENT" type="enum">Token-price threshold events.</ResponseField>
<ResponseField name="MARKET_CAP_EVENT" type="enum">Market-cap threshold events.</ResponseField>
<ResponseField name="TOKEN_TRANSFER_EVENT" type="enum">Token-transfer events.</ResponseField>
