Skip to main content
GET
/
v2
/
webhooks
/
events
cURL
curl --request GET \
  --url https://api.samora.ai/v2/webhooks/events \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "events": [
      {
        "event_type": "CALL_STARTED",
        "display_name": "Call Started",
        "description": "Triggered when a call begins (inbound or outbound). Basic call info available.",
        "available_data_options": []
      },
      {
        "event_type": "CALL_FINISHED",
        "display_name": "Call Finished",
        "description": "Triggered when a call ends with transcript and recording available.",
        "available_data_options": [
          "include_transcript",
          "include_recording_url"
        ]
      },
      {
        "event_type": "CALL_FAILED",
        "display_name": "Call Failed",
        "description": "Triggered when a call fails, is rejected, or goes unanswered.",
        "available_data_options": []
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

Your unique organization API key. Required on all requests.

Response

200 - application/json

Events catalog retrieved successfully

data
object
required