# GET /webhooks

List all webhooks of the authenticated key: for an API token the webhooks of your account in the token's sport, for a public API key the webhooks created with that key. `tournamentIds` are the public tournaments the webhook is subscribed to.

## Responses

```json
[
  {
    "_id": "65f1c2a0e1b2c3d4e5f60718",
    "name": "OBS Overlay",
    "url": "https://overlay.example.com/hook",
    "authToken": "shared-secret",
    "disabled": false,
    "tournamentIds": ["tio:T5MMiW8IVuWMp"]
  }
]
```