fathom-hello-world

Featured

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".

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 Hello World ## Overview First API calls against Fathom: list meetings, get a transcript, retrieve AI-generated summaries and action items. ## Prerequisites - Completed `fathom-install-auth` setup - At least one recorded meeting in Fathom ## Instructions ### Step 1: List Meetings ```bash curl -s -H "X-Api-Key: ${FATHOM_API_KEY}" \ "https://api.fathom.ai/external/v1/meetings?limit=5" \ | jq '.meetings[] | {id, title, created_at, duration_seconds}' ``` ### Step 2: Get Meeting Transcript ```bash RECORDING_ID="your-recording-id" curl -s -H "X-Api-Key: ${FATHOM_API_KEY}" \ "https://api.fathom.ai/external/v1/recordings/${RECORDING_ID}/transcript" \ | jq '.segments[] | {speaker, text, start_time}' ``` ### Step 3: Get AI Summary and Action Items ```bash # Get meeting with summary included curl -s -H "X-Api-Key: ${FATHOM_API_KEY}" \ "https://api.fathom.ai/external/v1/meetings?include_summary=true&limit=1" \ | jq '.meetings[0] | {title, summary, action_items}' ``` ### Step 4: Filter Meetings by Date ```bash # Meetings from the last 7 days curl -s -H "X-Api-Key: ${FATHOM_API_KEY}" \ "https://api.fathom.ai/external/v1/meetings?created_after=2026-03-15T00:00:00Z&limit=20" \ | jq '.meetings | length' ``` ## Output - List of meetings with IDs and metadata - Full transcript with speaker labels and timestamps - AI-generated summary and action items ## Error Handling | Error | Cause | Solution | |-------|-------|----------| | Empty meetings array | No ...

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-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
AI & Automation Solid

fathom-common-errors

Diagnose and fix Fathom API errors including auth failures and missing data. Use when API calls fail, transcripts are empty, or webhooks are not firing. Trigger with phrases like "fathom error", "fathom not working", "fathom api failure", "fix fathom".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-webhooks-events

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".

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