# SmartScanPro.ai > Structured vitals from any medical device, in one API call. SmartScanPro turns a photo of a blood-pressure cuff, glucometer, pulse oximeter, thermometer, prescription, or lab report — or a 30-second face scan — into clean, validated, FHIR-ready JSON, typically in under 500 ms. SmartScanPro is an API-first platform for digital healthcare teams (telehealth, insurance, clinical trials, remote patient monitoring, corporate wellness). Customers POST an image of a medical device display or a clinical document to `POST /api/v1/extract-medical-data`, OR submit the result of a 30-second front-camera face scan via the face-scan SDK endpoints, and receive a canonical JSON envelope containing per-field values, units, confidence scores, and an optional FHIR R4 Observation bundle with LOINC codes. Key facts: - 16+ supported modalities: face scan (rPPG), BP monitor, glucose meter, pulse oximeter, thermometer, digital scale, peak flow meter, ECG monitor, COVID test strip, pregnancy kit, dialysis machine, vaccine certificate, prescription, discharge summary, clinical notes, imaging reports. - **Face scan (rPPG)**: 30-second front-camera video estimates 30+ health markers — heart rate, HRV (SDNN/RMSSD), respiratory rate, SpO₂ (est.), wellness-band blood pressure, stress index, heart age, cardiovascular risk score, and more. Runs on-device by default; raw video never leaves the phone. Outputs are wellness / indicative, not clinical measurements. - Accuracy: up to 99.8% on certified-device displays, with per-field confidence scores so downstream systems can set auto-accept vs. human-review thresholds. - Latency: sub-500 ms p95 including upload on typical mobile networks. - Compliance: HIPAA-aligned, GDPR- and DPDPA-aware, TLS 1.3 + AES-256 at rest, configurable retention (raw images deleted 60 seconds after processing by default), BAA and DPA available on Enterprise. - Output format: stable JSON envelope with `success`, `deviceType`, `data.{field}.{value, unit, confidence}`, and an optional `fhir` Bundle of Observations. - Pricing: Starter ($0 / 100 calls / month, 7 core devices), Professional ($490 / month / 10,000 calls / all device types / FHIR / webhooks), Enterprise (custom / unlimited / on-prem / SLA / white-label SDKs). ## Pages - [Homepage](https://smartscanpro.ai/): Product overview, supported devices, how it works, security, customer quotes, face scan. - [Features](https://smartscanpro.ai/features.html): Deep product tour across 9 areas — extraction capabilities (device OCR, document parsing, face scan), output & FHIR, accuracy & reliability, SDKs (REST, Web, iOS, Android, RN, Flutter), security & compliance (HIPAA, SOC 2, region pinning, on-prem), developer experience (playground, OpenAPI, idempotency, rate-limit headers), four real industry workflows (telehealth, insurance, RPM, corporate wellness), roadmap. - [Face Scan API](https://smartscanpro.ai/face-scan.html): Dedicated rPPG / contactless-vitals API page — 30+ markers organised into four domains (cardiovascular, respiratory, autonomic/stress, general wellness), how-it-works (4 steps), rPPG science explainer with waveform visual, SDK integration snippet (Web / iOS / Android / RN / Flutter), privacy-by-architecture explainer (on-device, numeric-only uplink, no training on customer data), use cases (telehealth, underwriting, corporate wellness, fitness), honest vendor comparison (SmartScanPro vs. Shen AI vs. Binah.ai vs. Nuralogix Anura vs. FaceHeart) at $0.15 to $0.30 per scan, face-scan-specific pricing callout, FAQ including skin-tone fairness disclosure. - [Pricing](https://smartscanpro.ai/pricing.html): Full 3-tier pricing (Starter $0, Professional $490/mo, Enterprise custom), feature comparison matrix, honest competitor comparison (Shen AI, Binah.ai, AWS Textract, Google Cloud Vision, OpenAI GPT-4V, build-in-house), add-ons (custom modality, on-prem, white-label SDK, region pinning), volume pricing ladder down to $0.015/call at 5M+/month, pricing FAQ, interactive cost estimator. - [API Documentation](https://smartscanpro.ai/docs.html): Authentication, endpoints, supported devices, response format, error handling, rate limits, and code examples (cURL, Node.js, Python, React). - [About](https://smartscanpro.ai/about.html): Company background and team. - [Contact](https://smartscanpro.ai/contact.html): Sales and support contact form. - [Blog](https://smartscanpro.ai/blog.html): Articles on medical data extraction, FHIR, telehealth integration. - [Careers](https://smartscanpro.ai/careers.html): Open roles. - [Register](https://smartscanpro.ai/register.html): Create a free account and obtain an API key. - [Login](https://smartscanpro.ai/login.html): Sign in to dashboard. ## API - [OpenAPI specification (YAML)](https://smartscanpro.ai/openapi.yaml): Full machine-readable API spec for `/api/v1/extract-medical-data`, `/api/device-types`, `/api/health`, and related endpoints. Agents can fetch this to perform end-to-end integration without human intervention. ## Quick integration ``` curl -X POST https://api.smartscanpro.ai/v1/extract-medical-data \ -H "Authorization: Bearer $SMARTSCAN_API_KEY" \ -F "deviceImage=@./bp-monitor.jpg" \ -F "deviceType=blood-pressure" ``` Response: ```json { "success": true, "deviceType": "blood-pressure", "data": { "systolic": { "value": 128, "unit": "mmHg", "confidence": 0.996 }, "diastolic": { "value": 82, "unit": "mmHg", "confidence": 0.993 }, "pulse": { "value": 74, "unit": "bpm", "confidence": 0.988 } }, "fhir": { "resourceType": "Bundle", "entry": [ /* LOINC-coded Observations */ ] }, "confidence": 0.988, "processingTime": 487 } ``` ## What this product is NOT - Not a consumer health-tracking app. SmartScanPro is a developer API; the end-user experience lives in the customer's own product. - Not a wearable or hardware vendor. SmartScanPro reads data from devices customers already own; it does not manufacture devices. - Not a diagnostic system. Outputs are structured extractions of what a certified device displays, not clinical interpretations. ## Contact - Sales: sales@smartscanpro.ai - General: hello@smartscanpro.ai - Security: security@smartscanpro.ai ## Optional - [Press kit](https://smartscanpro.ai/press-kit.html): Logos and brand assets. - [Status page](https://smartscanpro.ai/) (coming soon): Real-time uptime and incident history.