Enter your email. Get a key. Start building.
Your API key is ready. Copy it now — you won't see it again.
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}`) })