WiseAI — Quick API Integration Guide

WiseAI lets you extract vital signs, heart rate and respiratory rate, from a short video of a person's face. Just send us the video, and we'll return the results in seconds.

Endpoint

POST https://api.wiseai.store/process-video

Authentication

Every request needs an API key passed via the X-API-Key header. Don't have one yet? Reach out to us at contact@wiseai.care to get your API key today.

Making a Request

Send your video as a multipart form upload with the field name file:

curl -X POST https://api.wiseai.store/process-video \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@video.mp4;type=video/mp4"

Response

You'll get back a JSON object with the measured vitals, each paired with a confidence score (0 to 1):

{
  "heart_rate": {
    "value": 75.84,
    "confidence": 0.88
  },
  "respiratory_rate": {
    "value": 17.57,
    "confidence": 0.97
  }
}

Field Description

  • heart_rate.value — Estimated heart rate in BPM
  • heart_rate.confidence — Model confidence for the reading
  • respiratory_rate.value — Estimated breaths per minute
  • respiratory_rate.confidence — Model confidence for the reading

Tips for Best Results

  • Use a well-lit, front-facing video of the subject's face.
  • Keep the camera steady — minimal movement improves accuracy.
  • A few seconds of footage is all that's needed.

Questions or Need Help?

Questions or need help integrating? Contact us at contact@wiseai.care.