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

# Retrieve Webhook

> Get details of a specific webhook

## Path Parameters

<ParamField path="webhook_id" type="string" required>
  The ID of the webhook to retrieve
</ParamField>

## Response

```json theme={null}
{
  "id": "webhook_abc123",
  "object": "webhook",
  "url": "https://yourapp.com/webhooks/outcry",
  "events": ["video.completed", "video.failed"],
  "is_active": true,
  "failure_count": 0,
  "last_success_at": 1730634000,
  "last_failure_at": null,
  "created_at": 1730634000,
  "updated_at": 1730634000
}
```

<Note>
  The webhook secret is never returned after creation for security reasons.
</Note>
