Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.medera.info/llms.txt

Use this file to discover all available pages before exploring further.

The Medera Python SDK is async-first, fully typed via Pydantic, and supports the full API.

Install

pip install medera
Requires Python 3.10+.

Quick start

import asyncio
from medera import MederaAuth, MederaClient

async def main():
    auth = MederaAuth(
        client_id=os.environ["MEDERA_CLIENT_ID"],
        client_secret=os.environ["MEDERA_CLIENT_SECRET"],
        audience="api.medera.ai",
    )

    async with MederaClient(auth=auth) as client:
        session = await client.sessions.create(
            patient_id="pat_abc",
            provider_id="prv_xyz",
            visit_type="psychiatry_followup",
        )
        print(session.id)

asyncio.run(main())