{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fathom-api",
    "name": "Fathom",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/fathom-api",
    "canonicalUrl": "https://clawhub.ai/byungkyu/fathom-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fathom-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fathom-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fathom-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/fathom-api",
    "agentPageUrl": "https://openagent3.xyz/skills/fathom-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fathom-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fathom-api/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Fathom",
        "body": "Access the Fathom API with managed OAuth authentication. Retrieve meeting recordings, transcripts, summaries, action items, and manage webhooks for notifications."
      },
      {
        "title": "Quick Start",
        "body": "# List recent meetings\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/meetings')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/fathom/{native-api-path}\n\nReplace {native-api-path} with the actual Fathom API endpoint path. The gateway proxies requests to api.fathom.ai and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Fathom OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=fathom&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'fathom'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"fathom\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Fathom connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/meetings')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Meetings",
        "body": "List Meetings\n\nGET /fathom/external/v1/meetings\n\nQuery parameters:\n\ncursor - Cursor for pagination\ncreated_after - Filter to meetings created after this timestamp (e.g., 2025-01-01T00:00:00Z)\ncreated_before - Filter to meetings created before this timestamp\ncalendar_invitees_domains[] - Filter by company domains (pass once per value)\ncalendar_invitees_domains_type - Filter by invitee type: all, only_internal, one_or_more_external\nrecorded_by[] - Filter by email addresses of users who recorded meetings\nteams[] - Filter by team names\n\nNote: OAuth users cannot use include_transcript, include_summary, include_action_items, or include_crm_matches parameters on this endpoint. Use the /recordings/{recording_id}/summary and /recordings/{recording_id}/transcript endpoints instead.\n\nExample with filters:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/meetings?created_after=2025-01-01T00:00:00Z&teams[]=Sales')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"limit\": 10,\n  \"next_cursor\": \"eyJwYWdlX251bSI6Mn0=\",\n  \"items\": [\n    {\n      \"title\": \"Quarterly Business Review\",\n      \"meeting_title\": \"QBR 2025 Q1\",\n      \"recording_id\": 123456789,\n      \"url\": \"https://fathom.video/xyz123\",\n      \"share_url\": \"https://fathom.video/share/xyz123\",\n      \"created_at\": \"2025-03-01T17:01:30Z\",\n      \"scheduled_start_time\": \"2025-03-01T16:00:00Z\",\n      \"scheduled_end_time\": \"2025-03-01T17:00:00Z\",\n      \"recording_start_time\": \"2025-03-01T16:01:12Z\",\n      \"recording_end_time\": \"2025-03-01T17:00:55Z\",\n      \"calendar_invitees_domains_type\": \"one_or_more_external\",\n      \"transcript_language\": \"en\",\n      \"transcript\": null,\n      \"default_summary\": null,\n      \"action_items\": null,\n      \"crm_matches\": null,\n      \"recorded_by\": {\n        \"name\": \"Alice Johnson\",\n        \"email\": \"alice.johnson@acme.com\",\n        \"email_domain\": \"acme.com\",\n        \"team\": \"Marketing\"\n      },\n      \"calendar_invitees\": [\n        {\n          \"name\": \"Alice Johnson\",\n          \"email\": \"alice.johnson@acme.com\",\n          \"email_domain\": \"acme.com\",\n          \"is_external\": false,\n          \"matched_speaker_display_name\": null\n        }\n      ]\n    }\n  ]\n}"
      },
      {
        "title": "Recordings",
        "body": "Get Summary\n\nGET /fathom/external/v1/recordings/{recording_id}/summary\n\nQuery parameters:\n\ndestination_url - Optional URL for async callback. If provided, the summary will be POSTed to this URL.\n\nSynchronous example:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/recordings/123456789/summary')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"summary\": {\n    \"template_name\": \"general\",\n    \"markdown_formatted\": \"## Summary\\n\\nWe reviewed Q1 OKRs, identified budget risks, and agreed to revisit projections next month.\"\n  }\n}\n\nAsync example:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/recordings/123456789/summary?destination_url=https://example.com/webhook')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Transcript\n\nGET /fathom/external/v1/recordings/{recording_id}/transcript\n\nQuery parameters:\n\ndestination_url - Optional URL for async callback. If provided, the transcript will be POSTed to this URL.\n\nSynchronous example:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/recordings/123456789/transcript')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"transcript\": [\n    {\n      \"speaker\": {\n        \"display_name\": \"Alice Johnson\",\n        \"matched_calendar_invitee_email\": \"alice.johnson@acme.com\"\n      },\n      \"text\": \"Let's revisit the budget allocations.\",\n      \"timestamp\": \"00:05:32\"\n    }\n  ]\n}"
      },
      {
        "title": "Teams",
        "body": "List Teams\n\nGET /fathom/external/v1/teams\n\nQuery parameters:\n\ncursor - Cursor for pagination\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/teams')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"limit\": 25,\n  \"next_cursor\": null,\n  \"items\": [\n    {\n      \"name\": \"Sales\",\n      \"created_at\": \"2023-11-10T12:00:00Z\"\n    }\n  ]\n}"
      },
      {
        "title": "Team Members",
        "body": "List Team Members\n\nGET /fathom/external/v1/team_members\n\nQuery parameters:\n\ncursor - Cursor for pagination\nteam - Team name to filter by\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/team_members?team=Sales')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"limit\": 25,\n  \"next_cursor\": null,\n  \"items\": [\n    {\n      \"name\": \"Bob Lee\",\n      \"email\": \"bob.lee@acme.com\",\n      \"created_at\": \"2024-06-01T08:30:00Z\"\n    }\n  ]\n}"
      },
      {
        "title": "Webhooks",
        "body": "Create Webhook\n\nPOST /fathom/external/v1/webhooks\nContent-Type: application/json\n\n{\n  \"destination_url\": \"https://example.com/webhook\",\n  \"triggered_for\": [\"my_recordings\", \"my_shared_with_team_recordings\"],\n  \"include_transcript\": true,\n  \"include_summary\": true,\n  \"include_action_items\": true,\n  \"include_crm_matches\": false\n}\n\ntriggered_for options:\n\nmy_recordings - Your private recordings (excludes those shared with teams on Team Plans)\nshared_external_recordings - Recordings shared with you by other users\nmy_shared_with_team_recordings - (Team Plans) Recordings you've shared with teams\nshared_team_recordings - (Team Plans) Recordings from other users on your Team Plan\n\nAt least one of include_transcript, include_summary, include_action_items, or include_crm_matches must be true.\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'destination_url': 'https://example.com/webhook', 'triggered_for': ['my_recordings'], 'include_summary': True}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/webhooks', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"id\": \"ikEoQ4bVoq4JYUmc\",\n  \"url\": \"https://example.com/webhook\",\n  \"secret\": \"whsec_x6EV6NIAAz3ldclszNJTwrow\",\n  \"created_at\": \"2025-06-30T10:40:46Z\",\n  \"include_transcript\": false,\n  \"include_crm_matches\": false,\n  \"include_summary\": true,\n  \"include_action_items\": false,\n  \"triggered_for\": [\"my_recordings\"]\n}\n\nDelete Webhook\n\nDELETE /fathom/external/v1/webhooks/{id}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/webhooks/ikEoQ4bVoq4JYUmc', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nReturns 204 No Content on success."
      },
      {
        "title": "Pagination",
        "body": "Use cursor for pagination. Response includes next_cursor when more results exist:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/meetings?cursor=eyJwYWdlX251bSI6Mn0=')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/fathom/external/v1/meetings?created_after=2025-01-01T00:00:00Z',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/fathom/external/v1/meetings',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'created_after': '2025-01-01T00:00:00Z'}\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "Recording IDs are integers\nTimestamps are in ISO 8601 format\nTranscripts and summaries are in English\nWebhook secrets are used to verify webhook signatures\nCRM matches only return data from your or your team's linked CRM\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (fields[], sort[], records[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping."
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Bad request or missing Fathom connection401Invalid or missing Maton API key404Resource not found429Rate limited4xx/5xxPassthrough error from Fathom API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with fathom. For example:\n\nCorrect: https://gateway.maton.ai/fathom/external/v1/meetings\nIncorrect: https://gateway.maton.ai/external/v1/meetings"
      },
      {
        "title": "Resources",
        "body": "Fathom API Documentation\nLLM Reference\nMaton Community\nMaton Support"
      }
    ],
    "body": "Fathom\n\nAccess the Fathom API with managed OAuth authentication. Retrieve meeting recordings, transcripts, summaries, action items, and manage webhooks for notifications.\n\nQuick Start\n# List recent meetings\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/meetings')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/fathom/{native-api-path}\n\n\nReplace {native-api-path} with the actual Fathom API endpoint path. The gateway proxies requests to api.fathom.ai and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Fathom OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=fathom&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'fathom'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"fathom\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Fathom connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/meetings')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nMeetings\nList Meetings\nGET /fathom/external/v1/meetings\n\n\nQuery parameters:\n\ncursor - Cursor for pagination\ncreated_after - Filter to meetings created after this timestamp (e.g., 2025-01-01T00:00:00Z)\ncreated_before - Filter to meetings created before this timestamp\ncalendar_invitees_domains[] - Filter by company domains (pass once per value)\ncalendar_invitees_domains_type - Filter by invitee type: all, only_internal, one_or_more_external\nrecorded_by[] - Filter by email addresses of users who recorded meetings\nteams[] - Filter by team names\n\nNote: OAuth users cannot use include_transcript, include_summary, include_action_items, or include_crm_matches parameters on this endpoint. Use the /recordings/{recording_id}/summary and /recordings/{recording_id}/transcript endpoints instead.\n\nExample with filters:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/meetings?created_after=2025-01-01T00:00:00Z&teams[]=Sales')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"limit\": 10,\n  \"next_cursor\": \"eyJwYWdlX251bSI6Mn0=\",\n  \"items\": [\n    {\n      \"title\": \"Quarterly Business Review\",\n      \"meeting_title\": \"QBR 2025 Q1\",\n      \"recording_id\": 123456789,\n      \"url\": \"https://fathom.video/xyz123\",\n      \"share_url\": \"https://fathom.video/share/xyz123\",\n      \"created_at\": \"2025-03-01T17:01:30Z\",\n      \"scheduled_start_time\": \"2025-03-01T16:00:00Z\",\n      \"scheduled_end_time\": \"2025-03-01T17:00:00Z\",\n      \"recording_start_time\": \"2025-03-01T16:01:12Z\",\n      \"recording_end_time\": \"2025-03-01T17:00:55Z\",\n      \"calendar_invitees_domains_type\": \"one_or_more_external\",\n      \"transcript_language\": \"en\",\n      \"transcript\": null,\n      \"default_summary\": null,\n      \"action_items\": null,\n      \"crm_matches\": null,\n      \"recorded_by\": {\n        \"name\": \"Alice Johnson\",\n        \"email\": \"alice.johnson@acme.com\",\n        \"email_domain\": \"acme.com\",\n        \"team\": \"Marketing\"\n      },\n      \"calendar_invitees\": [\n        {\n          \"name\": \"Alice Johnson\",\n          \"email\": \"alice.johnson@acme.com\",\n          \"email_domain\": \"acme.com\",\n          \"is_external\": false,\n          \"matched_speaker_display_name\": null\n        }\n      ]\n    }\n  ]\n}\n\nRecordings\nGet Summary\nGET /fathom/external/v1/recordings/{recording_id}/summary\n\n\nQuery parameters:\n\ndestination_url - Optional URL for async callback. If provided, the summary will be POSTed to this URL.\n\nSynchronous example:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/recordings/123456789/summary')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"summary\": {\n    \"template_name\": \"general\",\n    \"markdown_formatted\": \"## Summary\\n\\nWe reviewed Q1 OKRs, identified budget risks, and agreed to revisit projections next month.\"\n  }\n}\n\n\nAsync example:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/recordings/123456789/summary?destination_url=https://example.com/webhook')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Transcript\nGET /fathom/external/v1/recordings/{recording_id}/transcript\n\n\nQuery parameters:\n\ndestination_url - Optional URL for async callback. If provided, the transcript will be POSTed to this URL.\n\nSynchronous example:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/recordings/123456789/transcript')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"transcript\": [\n    {\n      \"speaker\": {\n        \"display_name\": \"Alice Johnson\",\n        \"matched_calendar_invitee_email\": \"alice.johnson@acme.com\"\n      },\n      \"text\": \"Let's revisit the budget allocations.\",\n      \"timestamp\": \"00:05:32\"\n    }\n  ]\n}\n\nTeams\nList Teams\nGET /fathom/external/v1/teams\n\n\nQuery parameters:\n\ncursor - Cursor for pagination\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/teams')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"limit\": 25,\n  \"next_cursor\": null,\n  \"items\": [\n    {\n      \"name\": \"Sales\",\n      \"created_at\": \"2023-11-10T12:00:00Z\"\n    }\n  ]\n}\n\nTeam Members\nList Team Members\nGET /fathom/external/v1/team_members\n\n\nQuery parameters:\n\ncursor - Cursor for pagination\nteam - Team name to filter by\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/team_members?team=Sales')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"limit\": 25,\n  \"next_cursor\": null,\n  \"items\": [\n    {\n      \"name\": \"Bob Lee\",\n      \"email\": \"bob.lee@acme.com\",\n      \"created_at\": \"2024-06-01T08:30:00Z\"\n    }\n  ]\n}\n\nWebhooks\nCreate Webhook\nPOST /fathom/external/v1/webhooks\nContent-Type: application/json\n\n{\n  \"destination_url\": \"https://example.com/webhook\",\n  \"triggered_for\": [\"my_recordings\", \"my_shared_with_team_recordings\"],\n  \"include_transcript\": true,\n  \"include_summary\": true,\n  \"include_action_items\": true,\n  \"include_crm_matches\": false\n}\n\n\ntriggered_for options:\n\nmy_recordings - Your private recordings (excludes those shared with teams on Team Plans)\nshared_external_recordings - Recordings shared with you by other users\nmy_shared_with_team_recordings - (Team Plans) Recordings you've shared with teams\nshared_team_recordings - (Team Plans) Recordings from other users on your Team Plan\n\nAt least one of include_transcript, include_summary, include_action_items, or include_crm_matches must be true.\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'destination_url': 'https://example.com/webhook', 'triggered_for': ['my_recordings'], 'include_summary': True}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/webhooks', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"id\": \"ikEoQ4bVoq4JYUmc\",\n  \"url\": \"https://example.com/webhook\",\n  \"secret\": \"whsec_x6EV6NIAAz3ldclszNJTwrow\",\n  \"created_at\": \"2025-06-30T10:40:46Z\",\n  \"include_transcript\": false,\n  \"include_crm_matches\": false,\n  \"include_summary\": true,\n  \"include_action_items\": false,\n  \"triggered_for\": [\"my_recordings\"]\n}\n\nDelete Webhook\nDELETE /fathom/external/v1/webhooks/{id}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/webhooks/ikEoQ4bVoq4JYUmc', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nReturns 204 No Content on success.\n\nPagination\n\nUse cursor for pagination. Response includes next_cursor when more results exist:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/fathom/external/v1/meetings?cursor=eyJwYWdlX251bSI6Mn0=')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/fathom/external/v1/meetings?created_after=2025-01-01T00:00:00Z',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/fathom/external/v1/meetings',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'created_after': '2025-01-01T00:00:00Z'}\n)\ndata = response.json()\n\nNotes\nRecording IDs are integers\nTimestamps are in ISO 8601 format\nTranscripts and summaries are in English\nWebhook secrets are used to verify webhook signatures\nCRM matches only return data from your or your team's linked CRM\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (fields[], sort[], records[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping.\nError Handling\nStatus\tMeaning\n400\tBad request or missing Fathom connection\n401\tInvalid or missing Maton API key\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from Fathom API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with fathom. For example:\nCorrect: https://gateway.maton.ai/fathom/external/v1/meetings\nIncorrect: https://gateway.maton.ai/external/v1/meetings\nResources\nFathom API Documentation\nLLM Reference\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/fathom-api",
    "publisherUrl": "https://clawhub.ai/byungkyu/fathom-api",
    "owner": "byungkyu",
    "version": "1.0.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fathom-api",
    "downloadUrl": "https://openagent3.xyz/downloads/fathom-api",
    "agentUrl": "https://openagent3.xyz/skills/fathom-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fathom-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fathom-api/agent.md"
  }
}