One Engine. Deploy Anywhere.

Bring powerful compliance automation directly into your workflow. Run lightning-fast bulk audits in our Command Center, plug natively into your CRM, or build custom logic on our REST API.

SolarLens™ Dashboard

Experience a premium, data-dense interface engineered for high-volume workflows. Manage thousands of jobs simultaneously, monitor real-time compliance metrics, and automatically trace audit history without leaving your browser.

  • Intuitive real-time analytics
  • Blazing fast drag-and-drop batch validation
  • Instantly exportable, audit-ready PDF reports
Open Dashboard
Platform Dashboard

Workflow Integrations

Connect SolarLens™ with your existing operational stack. Our flexible architecture enables you to build custom integrations and synchronize data perfectly without disrupting established field ops.

  • Build custom CRM integrations
  • Connect to preferred automation tools
  • Configure event-driven Webhook triggers
Explore Integrations
Integrations Map

API Documentation

The exact compliance engine powering our products is available securely via RESTful APIs. Built for developers with predictable endpoints, strict schemas, and sub-second JSON responses.

Analyze Installation Photo

Submit a high-resolution image to the /api/check endpoint to receive an instant compliance classification. Our AI engine natively parses EXIF geolocation and runs semantic analysis automatically.

Request Form-Data

photo_typestring, required

Contextual type of installation ("meter_box", "switchboard", "battery_signs")

imagefile, required

Multi-part form image file (JPG, PNG) minimum 800px width.

bash / curl
curl -X POST https://api.solarlensai.com/v1/check \ -H "Authorization: Bearer sk_live_oI92..." \ -F "photo_type=meter_box" \ -F "image=@/path/to/installation.jpg"
JSON Response (200 OK)
{
  "compliance_status": "PASS",
  "reasoning": "The meter box shows all mandatory CER labels clearly...",
  "confidence": 0.98,
  "identified_components": [
    "Main Switch",
    "Dual Supply Warning"
  ]
}
Request API Access