Skip to content

Developers

Build and run telemedicine with your own agents.

Everything in Purple Label MD is programmable. Point your AI agents at our API, MCP servers, agent-ready docs, and prompt library, and they can stand up intake, visits, prescribing, pharmacy, payments, and analytics — then operate and extend it. This is the spine of the platform, not a side door.

API reference

One programmable surface for every module.

REST endpoints for intake, visits, prescribing, pharmacy, payments, and analytics — scoped tokens, sandbox and production, predictable resources.

  • Scoped API tokens, separate sandbox and production environments.
  • A versioned API you can build against with confidence.
  • Consistent resources and errors across every module.
# Stand up an intake flow — your agent, via the API
POST /v1/intake/flows
{
  "condition": "weight-management",
  "components": ["eligibility", "medical-history", "id-verification"]
}

201 Created
{ "flow_id": "flw_8k2c...", "status": "live" }

Illustrative — the live API surface is published in the docs.

Agent-ready docs

Documentation your agents can act on.

Docs structured for AI agents to consume and execute against — not a PDF your team has to translate.

Built for machine consumption

  • Machine-readable and example-rich — every endpoint shows a working call.
  • Addressable: each resource, field, and error has a stable URL your agents can cite.
  • Written to be consumed by an agent first, skimmed by a human second.

Connect agents directly

  • Connect your agents to the platform over the Model Context Protocol.
  • No scraping docs, no bespoke glue code — the tools are typed and discoverable.
  • Scoped to the same tokens and environments as the REST API.

MCP servers

Your agents, plugged straight into the platform.

Connect over the Model Context Protocol and skip the integration layer entirely. Ships at launch.

Available at launch

Prompt library

A starting playbook for every module.

Curated, customizable prompts that get your agents productive on day one — then bend to your brand and your workflows.

Available at launch

Fork, tailor, version

  • A curated, customizable prompt for building and operating each module.
  • Your agents’ starting playbook — fork it, tailor it to your brand, version it.
  • Covers intake assembly, visit triage, fulfillment ops, reporting, and more.

Webhooks & events

Automate everything else.

Subscribe to platform events and let your agents and systems react in real time.

Events include order.created,visit.completed, andprescription.sent.

POST https://yourbrand.com/webhooks
{
  "event": "visit.completed",
  "data": {
    "visit_id": "vst_3p9d...",
    "patient_id": "pat_77a1..."
  }
}

Illustrative payload.

Built to build on

Environments, tokens, and versioning.

The boring guarantees that make a platform safe to automate against.

Sandbox & production

Develop and test against a full sandbox, then promote to production with the same calls.

Scoped tokens

Issue least-privilege tokens per environment, per agent, per integration.

Versioned API

Pinned versions and a published changelog, so upgrades never surprise your agents.

Get started

Point your agents at the platform and build.