Skip to main content
The fastest path: send a complete recording and get the note back.
1

Verify your key

curl https://api.recnote.ai/api/v1/ping \
  -H "Authorization: Bearer $RECNOTE_API_KEY"
2

Send audio, get a note

curl -X POST https://api.recnote.ai/api/v1/notes \
  -H "Authorization: Bearer $RECNOTE_API_KEY" \
  -F "file=@consultation.wav" \
  -F "language=sv"
3

Read the response

{
  "transcript": "Patienten söker för...",
  "note": {
    "cause": "...",
    "subjective": "...",
    "objective": "...",
    "assessment": "...",
    "plan": "...",
    "diagnoses": ["..."],
    "combined": "..."
  }
}
Next:

Full-file flow

Details, supported formats, transcript-only.

Chunked flow

Stream audio while recording is ongoing.

Custom templates

Shape the note to your own sections.

API reference

Every endpoint, parameter and field.