Developer API
JSON over HTTPS on your Zyene workspace. Examples below use https://app.zyenereviews.com—the same host as the dashboard.
Authentication
Create or rotate a key under Integrations → Developer API in the dashboard. Send it on every request as X-API-Key: zy_… or Authorization: Bearer zy_….
Base URL
Point clients at the same host that serves your dashboard (for example https://app.zyenereviews.com). Cross-origin calls from browsers must satisfy the API CORS rules configured for your deployment.
Endpoints
/api/v1/requests/sendSend a review request via SMS or email using your API key.
curl -X POST "https://app.zyenereviews.com/api/v1/requests/send" \ -H "X-API-Key: zy_..." \ -H "Content-Type: application/json" \ -d '{"customerName":"Alex","customerPhone":"+18165551234","channel":"sms"}'/api/v1/reviewsList reviews for the business linked to your API key (supports pagination and filters).
curl "https://app.zyenereviews.com/api/v1/reviews?page=1&limit=20&status=pending&minRating=4" \ -H "X-API-Key: zy_..."/api/v1/analyticsAggregate review and request activity for a time window.
curl "https://app.zyenereviews.com/api/v1/analytics?days=30" \ -H "X-API-Key: zy_..."Need a new key? Open Integrations in the app (you must be signed in).