Skip to main content
GET
/
v1
/
webhooks
List webhooks
curl --request GET \
  --url https://api.ledger.so/v1/webhooks \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "object": "webhook",
      "id": "<string>",
      "url": "<string>",
      "events": [
        "<string>"
      ],
      "status": "enabled",
      "createdAt": 123,
      "updatedAt": 123,
      "description": "<string>"
    }
  ],
  "hasMore": true,
  "object": "list"
}

Authorizations

Api-Key
string
header
required

API key for authentication. Get your key from the Dashboard.

Response

List of webhooks

data
object[]
required
hasMore
boolean
required
object
string
Example:

"list"