API reference · Webhooks

List webhooks

Every endpoint in the workspace, or the ones a given bot's events reach.

get/api/webhooks
Authentication
Bearer token
Retries
Safe to repeat
Body
None
Version
2026-09-03

With bot_id the answer includes org-wide endpoints, because the question being asked is "where do this bot's events go" - and an org-wide endpoint is one of the places they go.

Query parameters

  • bot_idstring (uuid) | null

Responses

  • 200OKapplication/json

    array of WebhookResponse — each item has these fields

    • api_versionstringrequired
    • bot_idstring (uuid) | nullrequired
    • consecutive_failuresintegerrequired
    • created_atstring (date-time)required
    • delivery_countintegerrequired
    • descriptionstring | nullrequired
    • disabled_atstring (date-time) | nullrequired
    • eventsarray of stringrequired
    • failure_countintegerrequired
    • healthstringrequired

      One word for a status dot, derived rather than stored.

      Stored health is health that goes stale the moment a delivery lands and nothing recomputes it.

    • idstring (uuid)required
    • is_activebooleanrequired
    • last_errorstring | nullrequired
    • last_failure_atstring (date-time) | nullrequired
    • last_success_atstring (date-time) | nullrequired
    • org_idstring (uuid)required
    • updated_atstring (date-time)required
    • urlstringrequired
    • secret_hintstring | null
    5 response headers
    RateLimit-Limit

    Requests permitted in the current window.

    RateLimit-Remaining

    Requests left in the current window. Back off before it reaches 0.

    RateLimit-Reset

    Seconds until the current window resets.

    X-API-Version

    The dated version of the API contract that served this response, e.g. 2026-09-03. Pin against it; it changes only when a response shape changes incompatibly.

    X-Request-ID

    Quote this in a support request to identify the call.

  • 422Validation error

    The shared error envelope, served as application/problem+json with error.code set to validation_error. Its details name each field that failed and why.

Example request

curl
curl "https://api.integrable.cloud/api/webhooks" \
  -H "Authorization: Bearer $INTEGRABLE_API_KEY"

Set INTEGRABLE_API_KEY first. The same call from the TypeScript or Python SDK takes the same fields.

Example response

200 OK · application/json
[
  {
    "api_version": "string",
    "bot_id": "01a0652b-3713-7ea1-a6c9-2e895389ec34",
    "consecutive_failures": 0,
    "created_at": "2026-09-03T09:30:00Z",
    "delivery_count": 20,
    "description": "string",
    "disabled_at": "2026-09-03T09:30:00Z",
    "events": [
      "string"
    ],
    "failure_count": 20,
    "health": "string",
    "id": "01a0652b-3713-7ea1-a6c9-2e895389ec34",
    "is_active": true,
    "last_error": "string",
    "last_failure_at": "2026-09-03T09:30:00Z",
    "last_success_at": "2026-09-03T09:30:00Z",
    "org_id": "01a0652b-3713-7ea1-a6c9-2e895389ec34",
    "secret_hint": "string",
    "updated_at": "2026-09-03T09:30:00Z",
    "url": "https://example.com"
  }
]

Generated from the schema above — the shape is exact, the values are placeholders.

Errors

Failures use one envelope on every endpoint, described in Retries, versioning and limits. The codes you are most likely to meet here:

  • validation_error · 422The payload was well-formed JSON but failed schema validation.
  • unauthenticated · 401The request carried no API key, or one the API could not verify.
  • forbidden · 403The key is valid, but it is not allowed to do this — either the scope is missing or the resource belongs to another workspace.
  • rate_limited · 429Too many requests in the current window. The limit is per workspace, and some endpoints add a per-bot limit on top.

More Webhooks endpoints

Something here wrong or missing? Tell us — the documentation and the API are maintained by the same person, so a correction is a fix rather than a ticket.

Building on it? Start on the free plan — no card — and call the same API the dashboard uses.

Start free