Skip to main content
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.

Key Features

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

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": "[email protected]", "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?uid=your_user_id \
  -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?uid=your_user_id \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -F "[email protected]"
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