Your API Key, Instantly

Enter your email. Get a key. Start building.

Free tier — 1,000 req/month
No credit card
Works in any browser — no SDK install
Real-time heart rate & HRV from any camera
Stress, respiratory rate & SPO₂ estimation
1,000 free requests/month — no card, instant key

Free — 1,000 requests/month  ·  No credit card  ·  Instant

Not sure yet? Try the API first →

You're in.

Your API key is ready. Copy it now — you won't see it again.

⚠ Store this key securely. Treat it like a password. If lost, generate a new one.

Quick Start

curl -X POST https://beamos-2.polsia.app/api/demo/analyze \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"mode":"portrait"}'
import BeamSDK from '@beam-ai/sdk'

// Initialize with your API key
const beam = new BeamSDK('beam_your_key_here')

// Start monitoring vitals
const session = await beam.startSession()
session.onReading(({ heartRate, hrv, stress }) => {
  console.log(`HR: ${heartRate} | HRV: ${hrv} | Stress: ${stress}`)
})