Skip to main content
GET
/
webhooks
List webhook subscriptions
curl --request GET \
  --url https://app.sendmux.ai/api/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "meta": {
    "request_id": "req_clxxxxxxxxxxxxxxxxxxxxxxxxx"
  },
  "data": [
    {
      "id": "whk_clxxxxxxxxxxxxxxxxxxxxxxxxx",
      "name": "Acme inbound forwarder",
      "url": "https://hooks.acme.com/sendmux",
      "event_types": [
        "message.bounced",
        "message.received"
      ],
      "filters": {
        "mailbox_ids": [
          "mbx_clxxxxxxxxxxxxxxxxxxxxxxxxx"
        ]
      },
      "enabled": true,
      "failing": false,
      "created_at": "2026-04-23T09:12:00Z",
      "updated_at": "2026-04-23T09:12:00Z"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Sendmux API key. Use a root API key for Management API routes, or a mailbox credential for Mailbox API routes. Obtain keys from the dashboard under API Keys.

Query Parameters

cursor
string

Pagination cursor — the next_cursor from the previous response.

limit
integer

Maximum results (default 50, max 100)

Required range: 1 <= x <= 100

Response

Subscription list

ok
enum<boolean>
required
Available options:
true
meta
object
required
data
object[]
required
pagination
object
required