Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.medisync.me/llms.txt

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

MediSync Medical AI Platform

Welcome to MediSync API

MediSync is a comprehensive medical AI platform that revolutionizes healthcare documentation and patient management. Our robust API ecosystem enables seamless integration of AI-powered medical transcription, clinical note generation, and intelligent patient data management into your healthcare applications.

REST API

Complete medical data management with appointments, patients, and AI-generated clinical notes

Live Transcription

Real-time audio transcription with speaker diarization via WebSocket

Key Features

Transform your healthcare workflows with our powerful AI-driven platform.

AI-Powered Clinical Notes

Generate SOAP clinical notes from appointment transcriptions using advanced medical AI

Real-time Transcription

Live audio transcription with automatic speaker identification and medical terminology recognition

Patient Management

Comprehensive patient data management with medical history and insurance integration

Appointment Workflow

Complete appointment lifecycle from planning to AI-generated medical documentation

Document Generation

Automated medical referral letters and documentation in multiple languages

Secure File Management

HIPAA-compliant storage for recordings, documents, and medical data

Quick Start

Get started with MediSync API in minutes.
1

Authentication

Obtain your JWT token by registering and logging into the MediSync platform
curl -X POST https://app.medisync.me/api/login \
  -H "Content-Type: application/json" \
  -d '{"email": "doctor@example.com", "password": "password"}'
2

Create an Appointment

Set up your first medical appointment with patient details
curl -X POST https://app.medisync.me/api/appointments/add \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "Annual Checkup", "date": "2024-01-15", "time": "14:30"}'
3

Upload Recording

Upload audio recording for AI transcription and note generation
curl -X POST https://app.medisync.me/api/recordings/add/APPOINTMENT_ID \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -F "audio=@recording.wav"
4

Get AI-Generated Notes

Retrieve AI-generated clinical notes and medical insights
curl -X GET https://app.medisync.me/api/notes/APPOINTMENT_ID \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

Base URLs

Main API: https://app.medisync.me/api/Live Transcription: wss://speech.medisync.me/ws/transcribe

Next Steps

Authentication Guide

Learn about JWT authentication and authorization

API Reference

Explore all available endpoints and their capabilities