# GET /v2/webhooks

**List subscriptions**

Returns webhook subscriptions created by the current API key, newest-first. Visibility is key-scoped: webhooks created with a different key on the same account are not returned here. Use `?status=` to filter and the `cursor` field to paginate.

## Plan access

- **Plan access.** Included on every plan.
- **Cadence.** Hobby 5m · Pro 1m · Scale 1m · Enterprise 1m.
- **Capacity.** Hobby 5 · Pro 25 · Scale 100 · Enterprise unlimited.

## Query / path parameters

| Name | In | Type | Required | Description |
|------|----|----|----------|-------------|
| `status` | query | string | no | Filter by status. Enum: `active`, `pending_verification`, `disabled`. |
| `limit` | query | integer | no | Page size. Max 100. Default: `50`. |
| `cursor` | query | string | no | Opaque cursor from the previous response. |

## Status codes

- **200** — Page of webhooks with `as_of`, `count`, `next_cursor`, and `webhooks`. The `signing_secret` field is stripped (it's only shown on create).

## Sample response

```json
{
  "as_of": "2026-05-14T11:41:01.000Z",
  "count": 2,
  "next_cursor": null,
  "webhooks": [
    {
      "id": "wh_smRsF3-z36o",
      "name": "breakouts-on-tech",
      "q": "breakout AND sector = 'Technology'",
      "target_url": "https://your-app.example.com/webhooks/tickerbot",
      "status": "active",
      "source": "v2",
      "created_at": 1778720416,
      "updated_at": 1778720500,
      "last_match_set": ["AAPL", "NVDA"],
      "last_evaluated_at": 1778721240
    }
  ]
}
```

## Examples

### List active webhooks

Request:

```shell
curl "https://api.tickerbot.io/v2/webhooks?status=active&limit=5" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (`200`):

```json
{
  "as_of": "2026-05-14T11:41:01.000Z",
  "count": 2,
  "next_cursor": null,
  "webhooks": [
    {
      "id": "wh_smRsF3-z36o",
      "name": "breakouts-on-tech",
      "q": "breakout AND sector = 'Technology'",
      "target_url": "https://your-app.example.com/webhooks/tickerbot",
      "status": "active",
      "source": "v2",
      "created_at": 1778720416,
      "updated_at": 1778720500,
      "last_match_set": ["AAPL", "NVDA"],
      "last_evaluated_at": 1778721240
    }
  ]
}
```

---

Interactive sandbox + parameter editor: https://tickerbot.io/api/endpoints/webhooks/list
