Convo
API ReferenceWebhooks

List webhooks

List all active webhooks. Professional and Enterprise tiers only.

GET
/api/v1/webhooks

Authorization

AuthorizationRequiredBearer <token>

API key as Bearer token. Generate keys in your Convo dashboard settings.

In: header

curl -X GET "https://www.itsconvo.com/api/v1/webhooks" \
  -H "Authorization: Bearer <token>"

Active webhooks

{
  "data": [
    {
      "id": "wh_abc123",
      "url": "https://hooks.example.com/convo",
      "events": [
        "conversation.keypoints.ready",
        "transcript.ready"
      ],
      "created_at": "2026-03-10T12:00:00.000Z"
    }
  ]
}