AI Integration · GeraLens
GeraLens for AI Agents
GeraLens is a computer vision service for the Gera ecosystem. AI agents submit an image URL and receive detected objects, their service context matches across the Gera portfolio, price estimates, and direct booking links.
What GeraLens does
GeraLens bridges the visual world and the Gera service ecosystem. A user photographs a broken pipe → GeraLens detects plumbing context and routes to GeraHome. A user films a dish at a restaurant → GeraLens matches it to GeraEats options. A user shares a scan of their skin condition → GeraLens routes to GeraClinic dermatology.
The API accepts JPEG, PNG, and WebP images up to 10MB and returns structured JSON with detected objects, confidence scores, matched Gera service verticals, price estimates, and direct booking deep links. Free tier: 50 analyses/month. Gera Prime: unlimited.
API endpoints for agents
- POST /api/v1/analyse — Analyse an image. Body: image_url or image_base64, user_location (optional)
- GET /api/v1/service-contexts — List all supported service context categories
- GET /api/v1/analyses/:id — Retrieve a previous analysis result
Base URL: https://geralens.com. Analysis requires user Bearer token (for quota tracking). Public endpoint available for low-volume use.
POST /api/v1/analyse response example:
{ "detected": [{"object": "burst_pipe", "confidence": 0.94}], "service_matches": [{"vertical": "gera-home", "service_type": "plumbing", "booking_url": "https://gerahome.com/book?service=plumbing", "price_estimate": {"min": 60, "max": 120, "currency": "GBP"}}] }
Agent behaviour guidelines
- Always obtain the user's consent before submitting an image containing personal data (faces, medical conditions, home interiors).
- Do not store image data — submit and discard. Never cache image content.
- For medical image matches, always disclaim that GeraLens is not a diagnostic tool — route to GeraClinic for a proper consultation.
- Provide confidence scores alongside service matches so users can assess the relevance of recommendations.