Commet
  • Pricing
Log InTry out
Create webhook endpoint POSTDelete webhook endpoint DELETEList webhook endpoints GETTest webhook endpoint POST
DocumentationKnowledge BaseBuild with AIAPI ReferenceWebhooks

List webhook endpoints

List webhook endpoints with cursor-based pagination.

Delete webhook endpoint DELETE

Permanently delete a webhook endpoint.

Test webhook endpoint POST

Send a test event to a webhook endpoint to verify connectivity.

GET
/webhooks

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Query Parameters

limit?integer
cursor?string

Response Body

application/json

application/json

curl -X GET "https://commet.co/api/v1/webhooks"

List webhook endpoints with cursor-based pagination.

Max 100, default 25

{
  "success": true,
  "data": [
    {
      "object": "webhook",
      "livemode": true,
      "id": "string",
      "url": "http://example.com",
      "events": [
        "string"
      ],
      "description": "string",
      "isActive": 





{
  "success": false,
  "error": {
    "type": "validation_error",
    "code": "string",
    "message": "string",
    "doc_url": "string",
    "param": "string"
  }
}
true
,
"createdAt": "2019-08-24T14:15:22Z"
}
],
"hasMore": true,
"nextCursor": "string"
}