fathom-webhooks-events

Featured

Configure Fathom webhooks for real-time meeting notifications. Use when setting up automated meeting processing, receiving real-time transcripts, or triggering workflows when meetings complete. Trigger with phrases like "fathom webhook", "fathom notifications", "fathom real-time", "fathom event handler".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Fathom Webhooks & Events ## Overview Fathom webhooks send meeting data to your URL when recordings are ready. Webhooks can include summary, transcript, and action items. Configure in Settings or via API. ## Webhook Setup ### Via API ```bash curl -X POST -H "X-Api-Key: ${FATHOM_API_KEY}" \ -H "Content-Type: application/json" \ https://api.fathom.ai/external/v1/webhooks \ -d '{ "url": "https://your-app.com/webhooks/fathom", "include_summary": true, "include_transcript": true, "include_action_items": true, "fire_on_own_meetings": true, "fire_on_shared_meetings": false }' ``` ### Via Settings Navigate to Settings > Integrations > Webhooks > Create Webhook. ## Webhook Payload ```json { "type": "meeting_content_ready", "recording_id": "rec-abc123", "url": "https://fathom.video/call/abc123", "share_url": "https://fathom.video/share/abc123", "title": "Product Review Q1", "summary": "Discussed roadmap priorities...", "transcript": [...], "action_items": [...] } ``` ## Webhook Handler ```python from flask import Flask, request, jsonify app = Flask(__name__) @app.route("/webhooks/fathom", methods=["POST"]) def fathom_webhook(): event = request.json if event.get("type") == "meeting_content_ready": recording_id = event["recording_id"] summary = event.get("summary", "") actions = event.get("action_items", []) # Process meeting data print(f"Meeting ready: {event.get('title')} ({len...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

fathom-deploy-integration

Deploy Fathom webhook handlers and meeting sync services. Trigger with phrases like "deploy fathom", "fathom webhook server", "fathom cloud function".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-hello-world

Retrieve meeting transcripts and summaries from the Fathom API. Use when fetching meeting data, testing API access, or learning Fathom API response structure. Trigger with phrases like "fathom hello world", "fathom first api call", "get fathom transcript", "fathom meeting data".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-security-basics

Secure Fathom API keys and handle meeting data privacy. Trigger with phrases like "fathom security", "fathom api key safety", "fathom privacy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-install-auth

Configure Fathom AI meeting assistant API access with API key authentication. Use when setting up Fathom API integration, generating API keys, or configuring webhook access for meeting data. Trigger with phrases like "install fathom", "setup fathom api", "fathom auth", "fathom api key", "configure fathom".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-core-workflow-a

Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".

2,266 Updated today
jeremylongshore