Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://api.leokit.dev/webhooks \
  --header 'Api-Key: <api-key>'
{
  "data": {
    "webhooks": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "url": "<string>",
        "events": [
          "<string>"
        ],
        "type": "standard",
        "is_active": true,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "secret": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.leokit.dev/llms.txt

Use this file to discover all available pages before exploring further.

Returns every webhook currently registered under your API key. The secret is not included in this response — it was only available at creation time. See Webhooks for the full event catalog and payload formats.

Authorizations

Api-Key
string
header
required

Demo API-Key (Sandbox): 7037d2b3-9c76-4f62-b730-c544f7570fa4

Response

Webhook list.

data
object
required