Environments
Lezu provides production and development endpoints so teams can separate live app traffic from integration testing.
Public Endpoints
| Environment | API URL |
|---|---|
| Production | https://api.lezu.app |
| Development | https://api.dev.lezu.app |
Use production for live customer-facing workflows. Use development when testing an integration before it becomes part of your release process.
Health Checks
You can check whether the API is reachable:
GET https://api.lezu.app/health
GET https://api.dev.lezu.app/health
The public Status page also runs live checks from your browser.
Versioned API
Current API routes use /v1:
https://api.lezu.app/v1
Avoid hard-coding undocumented routes. Build integrations around the documented endpoints and response envelopes.