---
title: "List Webhooks"
method: GET
path: "/v0/inboxes/{inbox_id}/webhooks"
tags: ["InboxesWebhooks"]
---

# List Webhooks

`GET /v0/inboxes/{inbox_id}/webhooks`

**CLI:**
```bash
agentmail inboxes:webhooks list --inbox-id <inbox_id>
```

## Path parameters

- `inbox_id` string, required — The ID of the inbox.

## Query parameters

- `limit` integer — Limit of number of items returned.
- `page_token` string — Page token for pagination.
- `ascending` boolean — Sort in ascending temporal order.

## Response `200`

- WebhooksListWebhooksResponse
  - `count` integer, required — Number of items returned.
  - `limit` integer — Limit of number of items returned.
  - `next_page_token` string — Page token for pagination.
  - `webhooks` WebhooksWebhook[], required — Ordered by `created_at` descending.
    - `webhook_id` string, required — ID of webhook.
    - `url` string, required — URL of webhook endpoint.
    - `event_types` EventType[] — Event types for which to send events.
    - `pod_ids` string[] — Pods for which to send events. Maximum 10 per webhook.
    - `inbox_ids` string[] — Inboxes for which to send events. Maximum 10 per webhook.
    - `secret` string, required — Secret for webhook signature verification.
    - `enabled` boolean, required — Webhook is enabled.
    - `updated_at` string, date-time, required — Time at which webhook was last updated.
    - `created_at` string, date-time, required — Time at which webhook was created.
    - `client_id` string — Client ID of webhook.

---

[API](https://skmtc.net/agentmail-to/apis/api.md) · [All operations](https://skmtc.net/agentmail-to/apis/api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/agentmail-to/api/versions/394ddcdd9c29/schema)
