POST
/
webhooks
Create a webhook
curl --request POST \
  --url https://api.fathom.ai/external/v1/webhooks \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "destination_url": "https://example.com/webhook",
  "include_action_items": true,
  "include_crm_matches": true,
  "include_summary": true,
  "include_transcript": true
}'
{
  "id": "ikEoQ4bVoq4JYUmc",
  "url": "https://example.com/webhook",
  "secret": "whsec_x6EV6NIAAz3ldclszNJTwrow",
  "created_at": "2025-06-30T10:40:46Z",
  "include_transcript": true,
  "include_crm_matches": true,
  "include_summary": true,
  "include_action_items": true
}

Authorizations

X-Api-Key
string
header
required

Include your API key in the X-Api-Key header of every request.

Body

application/json

Response

201
application/json

The created webhook.

The response is of type object.