App
Open App

API

Scribeberry API

AI-powered clinical documentation for your product. Embed transcription, note generation, and template management into any healthcare application.

Core capabilities

Realtime Transcription

Stream audio and receive medical-grade transcripts in real time. Supports 80+ languages with context-aware clinical terminology.

Note Generation

Send a transcript or raw audio and receive structured clinical notes—SOAP, H&P, consult notes, and more—formatted to your spec.

Template System

Access 2,000+ pre-built clinical templates or create custom ones. The API returns notes matching your exact format requirements.

Async Transcription

Upload recorded audio files for batch processing. Ideal for post-visit documentation, dictation workflows, and telehealth recordings.

Quick start

npm install @scribeberry/sdk

import { ScribeberryClient } from "@scribeberry/sdk";

const client = new ScribeberryClient({
  apiKey: process.env.SCRIBEBERRY_API_KEY,
});

const note = await client.notes.generate({
  transcript: encounterTranscript,
  template: "soap",
  specialty: "family-medicine",
});

console.log(note.content);

Who is this for?

EHR / EMR vendorsTelehealth platformsClinical workflow toolsHealthcare startups