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

# Get Webhook

> Retrieve the webhook configured for your API key

Get the webhook configuration for your API key.

<Note>
  The `status` field is either `ACTIVE` (delivering) or `FAILED` (auto-paused
  after repeated delivery failures). See [Delivery & Failure
  Handling](/rest-api-reference/create-webhook#delivery-%26-failure-handling)
  for how to recover a paused webhook.
</Note>

## Response

<ResponseField name="data" type="object">
  The webhook object if one exists
</ResponseField>

<ResponseField name="message" type="string">
  Status message
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X GET https://scrape.st/webhook \
    -H "x-api-key: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": {
      "id": "wh_abc123",
      "apiKey": "sk_live_xxx",
      "name": "My Webhook",
      "url": "https://your-domain.com/webhook",
      "status": "ACTIVE"
    },
    "message": "Webhook retrieved successfully"
  }
  ```
</ResponseExample>
