Lensmor provides developer-facing access to event, exhibitor, personnel, contact, and profile-matching data through a public API contract under https://platform.lensmor.com/external/*.
This repository hosts the public documentation site for developers integrating with Lensmor.
Use the API to:
- Browse and inspect event data
- Search exhibitors using company context and optional event scope
- Retrieve exhibitor and personnel profiles
- Search contacts with company-based inputs
- Request profile-matching recommendations for discovery workflows
https://platform.lensmor.com
All documented paths are relative to this base URL. For example:
GET /external/events/listPOST /external/exhibitors/search
- Obtain a valid user API key.
- Send requests to
https://platform.lensmor.com. - Include the authorization header on every request.
- Use the reference docs to explore available resources and request formats.
Authorization: Bearer uak_your_api_keycurl -X GET "https://platform.lensmor.com/external/events/list?page=1&pageSize=20" \
-H "Authorization: Bearer uak_your_api_key"index.mdx— overview and quick startauthentication.mdx— authentication and authorization formatconcepts/errors.mdx— shared error conventionsconcepts/pagination.mdx— pagination behaviorapi-reference/events/— event endpointsapi-reference/exhibitors/— exhibitor endpointsapi-reference/personnel/— personnel endpointsapi-reference/contacts/— contact search endpointsapi-reference/profile-matching/— recommendation endpoints
- Build event discovery workflows
- Match exhibitors to a company profile or target audience
- Enrich sales, partnership, or market research pipelines
- Explore people and organizations connected to relevant events
pnpm dlx mintlify devThis documentation reflects the current public API contract only. It excludes internal implementation details and historical draft references that are not part of the external developer experience.