skillfed

fathom-python

Fathom's official Python SDK.

fathom-python v0.0.43 103.7K downloads/30d#12,789 on PyPI
License unclear Active released

What it is and what it does

fathom-python is the official Python SDK for Fathom's External API, providing a typed client to query meeting recordings, team metadata, and user permissions. It wraps HTTP calls to Fathom's backend using httpx and pydantic for request/response validation, supporting both synchronous and asynchronous usage patterns.

The SDK lets you list meetings with filters (by domain, team, meeting type, or recorder), fetch summaries and transcripts for recordings, request and monitor download jobs, and manage webhooks to receive notifications when new meeting content is ready. It handles pagination automatically via a `.next()` method on list responses. Authentication is API-key or bearer-token based, configured at client initialization.

Use it for:

  • Sync meeting data from Fathom into your internal database or CRM on a schedule using list_meetings with domain and team filters.
  • Retrieve meeting transcripts and summaries programmatically to feed into downstream NLP or analysis pipelines.
  • Set up webhooks to trigger actions (e.g., notifications, integrations) when new meeting recordings are processed and ready.
  • Audit user permissions and team membership across your Fathom workspace via list_users and list_team_members.
  • Request and monitor recording downloads for archival or compliance workflows using create_recording_download and get_recording_download.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A Python SDK for the Fathom External API that lets you query meetings, teams, and team members, and manage webhooks for meeting content notifications.

Yes, if you need to integrate Fathom meeting data into a Python application. The SDK is actively maintained, has low install friction, and supports modern Python versions. However, verify the license terms before use—the metadata does not declare an SPDX license, which is unusual for an official SDK. No known security vulnerabilities.

Install

fathom-python on PyPI

pip

pip install fathom-python

uv

uv add fathom-python

poetry

poetry add fathom-python

Installing fathom-python

Before you install

Low install friction with a pure-Python wheel distribution. Active maintenance with a release within the last 16 days. Supports current Python versions (3.9.2 and above, including 3.10–3.14).

License in practice

License status is unclear—no SPDX identifier or raw license text is available in the package metadata. Verify the actual license terms before use in proprietary or copyleft-sensitive projects.

Quickstart

pip install fathom-python

from fathom_python import Fathom, models
import os

with Fathom(
    security=models.Security(
        api_key_auth=os.getenv("FATHOM_API_KEY_AUTH", ""),
    ),
) as fathom:
    res = fathom.list_meetings()
    while res is not None:
        # Handle items
        res = res.next()

Requires a valid Fathom API key set in the FATHOM_API_KEY_AUTH environment variable or passed explicitly via the security parameter.

Verify before relying

  • Whether the package includes type stubs or inline type hints for full IDE support beyond PyCharm.
  • Actual webhook delivery guarantees and retry behavior when receiving meeting-ready notifications.
  • Rate limiting and pagination cursor behavior for large result sets across list operations.
  • Whether async operations are fully non-blocking or if they wrap synchronous calls.

Package facts

License not declared (unclear)
Python support supports the current Python release (>=3.9.2)
Install friction low — pure-Python wheel
Runtime dependencies 7 — httpcore, httpx, jsonpath-python, pydantic, requests, svix, types-requests
Maintenance actively maintained — 16 days since the last release
First released
Downloads 103,713/month — #12,789 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: fathom_python-0.0.43-py3-none-any.whl

Programming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14

Tags

fathom api clientmeeting data sdkmeeting recording apiteam and meeting managementwebhook integration for meetingsmeeting transcript and summary apifathom python sdk
api-clientmeeting-datawebhook-support

More WWW/HTTP packages