> ## Documentation Index
> Fetch the complete documentation index at: https://getlemma.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Banking built for healthcare

> Lemma is a healthcare banking platform that brings bank accounts, payments, treasury workflows, and insurance payment reconciliation into one place.

export const brand = "#36A17D";

export const Links = ({items}) => <div style={{
  display: "flex",
  flexDirection: "column",
  gap: "0.3rem",
  marginTop: "0.875rem"
}}>
    {items.map(item => <a key={item.href} href={item.href} style={{
  alignSelf: "flex-start",
  color: brand,
  fontWeight: "500",
  fontSize: "0.875rem",
  textDecoration: "none",
  borderBottom: "none"
}}>
        {item.label} <span style={{
  opacity: "0.55"
}}>→</span>
      </a>)}
  </div>;

Whether you run a single practice or a group of entities, each one gets its own account and a single dashboard across all of them. These guides cover how each piece works.

## Start here

<Columns cols={3}>
  <Card title="Quickstart" icon="rocket" href="/docs/quickstart">
    Open your first account in about five minutes. No branch visit.
  </Card>

  <Card title="Own multiple entities" icon="sitemap" href="/docs/guides/own-multiple-entities">
    Every entity its own account, all under a single login.
  </Card>

  <Card title="Collaborate on onboarding" icon="user-group" href="/docs/guides/collaboration">
    Ask a business partner to fill in their own details, without routing sensitive information through you.
  </Card>
</Columns>

## What you can do with Lemma

<Columns cols={2}>
  <Card title="Deposits that arrive reconciled" icon="file-invoice-dollar">
    Your lockbox scans and matches EOBs on arrival, so insurance payments land already tied to the claim they paid.

    <Links
      items={[
    { label: "Insurance payments", href: "/guides/insurance-payments" },
    { label: "Lockbox", href: "/guides/lockbox" },
    { label: "EOB processing", href: "/billing/eob-processing" },
    { label: "Reconciliation", href: "/billing/reconciliation" },
  ]}
    />
  </Card>

  <Card title="Every account in one place" icon="building-columns">
    One account per entity and one view across all of them, with balances and transactions updating in real time.

    <Links
      items={[
    { label: "Bank accounts", href: "/guides/accounts" },
    { label: "Debit cards", href: "/guides/cards" },
    { label: "Transactions", href: "/guides/transactions" },
    { label: "Order checkbooks", href: "/guides/order-checkbooks" },
  ]}
    />
  </Card>

  <Card title="Money that moves on your rules" icon="money-bill-transfer">
    Free ACH, RTP, and FedNow transfers. Set a sweep threshold once and balances rebalance themselves.

    <Links
      items={[
    { label: "Move money", href: "/guides/move-money" },
    { label: "External accounts", href: "/guides/external-accounts" },
    { label: "Cash sweeps", href: "/guides/cash-sweeps" },
    { label: "Mobile check deposit", href: "/guides/mobile-check-deposit" },
  ]}
    />
  </Card>

  <Card title="Invoices you send and can track" icon="file-invoice">
    Bill your own customers, and see each payment land against the invoice that earned it.

    <Links
      items={[
    { label: "Create an invoice", href: "/guides/invoicing" },
    { label: "Invoice contacts", href: "/guides/invoice-contacts" },
    { label: "Invoices sent", href: "/guides/invoices-sent" },
    { label: "Invoices paid", href: "/guides/invoices-paid" },
  ]}
    />
  </Card>
</Columns>

## Built for your whole team

<Columns cols={3}>
  <Card title="Owners and admins" icon="shield-halved">
    Decide who sees balances, who moves money, and how much approval a transfer needs.

    <Links
      items={[
    { label: "Team management", href: "/guides/team-management" },
    { label: "Approval rules", href: "/guides/approval-rules" },
    { label: "Attachments", href: "/guides/attachments" },
    { label: "Pricing", href: "/billing/pricing" },
  ]}
    />
  </Card>

  <Card title="Billing teams" icon="calculator">
    Move your payers over, let remittances parse themselves, and close the month out of one system.

    <Links
      items={[
    { label: "Migrate your payers", href: "/billing/migrate-payers" },
    { label: "Lockbox EOB parsing", href: "/billing/lockbox-eob-parsing" },
    { label: "Patient refunds", href: "/billing/patient-refunds" },
    { label: "Export transactions", href: "/guides/export-transactions" },
  ]}
    />
  </Card>

  <Card title="Engineers" icon="code">
    A REST API over accounts, transactions, transfers, and remittance data, with webhooks when things change.

    <Links
      items={[
    { label: "API introduction", href: "/api-reference/introduction" },
    { label: "Authentication", href: "/api-reference/authentication" },
    { label: "Webhooks", href: "/api-reference/webhooks" },
    { label: "Entities", href: "/api-reference/entities" },
  ]}
    />
  </Card>
</Columns>

## Programs that come with your account

<Columns cols={3}>
  <Card title="Deposit bonuses" icon="gift" href="/docs/guides/deposit-bonuses">
    Earn a bonus on every dollar you bring over, across every account.
  </Card>

  <Card title="Fixed-fee loans" icon="hand-holding-dollar" href="/docs/guides/fixed-fee-loans">
    Borrow against insurance receivables you have already earned, at a flat fee.
  </Card>

  <Card title="MSO-PC compliance" icon="scale-balanced" href="/docs/guides/mso-pc-compliance">
    Keep management company and professional corporation money cleanly separated.
  </Card>
</Columns>

## Keep up with Lemma

<Columns cols={2}>
  <Card title="Changelog" icon="clock-rotate-left" href="/docs/changelog">
    Every product change we ship.
  </Card>

  <Card title="Roadmap" icon="map" href="/docs/roadmap">
    What we are building next.
  </Card>
</Columns>
