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

# List Webhooks

> Return a list of your webhooks

<RequestExample>
  ```bash Request theme={null}
  curl -X GET https://api.gotolstoy.com/webhooks \
    --header 'Authorization: Bearer <API_KEY>'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "createdAt": "2021-03-22T13:51:16.322Z",
      "event": "response_summary",
      "owner": "32f9d998-9217-47bb-8f76-c0a6dee4931b",
      "url": "https://my.web.hook.url",
      "id": "d955d84b-046f-4b28-92ab-4d3a228c5c04",
      "updatedAt": "2021-03-22T13:51:16.322Z"
    }
  ]
  ```
</ResponseExample>
