Authentication
Allexternal/* endpoints under https://platform.lensmor.com require a user API key.
Header format
Base URL
https://platform.lensmor.com
Combine this base URL with the endpoint paths documented in the API reference. For example, GET /external/events/list becomes GET https://platform.lensmor.com/external/events/list.
How it works
- The public contract uses a Bearer token in the
Authorizationheader. - Bearer scheme matching is case-insensitive at runtime.
- These docs follow the current public API contract.
Before you call the API
- Obtain a valid user API key. API access is available to paying customers — contact hello@lensmor.com to purchase.
- Send the header on every request.
- Expect
401 Unauthorizedwhen the key is missing, malformed, revoked, or otherwise invalid.
Notes
- Invalid or missing keys return the shared API error contract described in Error conventions.