Documentation Index
Fetch the complete documentation index at: https://api.lensmor.com/llms.txt
Use this file to discover all available pages before exploring further.
Event brief details
Fetch a lightweight summary for a single event.
Endpoint
GET /external/events/brief
Authentication
See Authentication
Success status code
200 OK
Query parameters
| Name | Required | Type | Notes |
|---|
event_id | Yes | string | Event identifier returned by Lensmor event endpoints. |
Response body
Top-level fields
| Field | Type | Notes |
|---|
event | object | Same event summary shape as GET /external/events/list items[]. |
summary | object | Brief rollup metadata. |
summary fields
| Field | Type | Notes |
|---|
attendeeCount | integer | Defaults to 0 when absent in storage. |
exhibitorCount | integer | Defaults to 0 when absent in storage. |
personnelCount | integer | Defaults to 0 when absent in storage. |
Response example
{
"event": {
"id": "123",
"eventId": "139574",
"name": "Shoptalk",
"nickname": null,
"description": null,
"url": "https://example.com",
"dateStart": "2026-03-25",
"dateEnd": "2026-03-28",
"venue": "Convention Center",
"city": "Las Vegas",
"region": "Nevada",
"country": "United States",
"exhibitorCount": 250,
"image": null
},
"summary": {
"attendeeCount": 10000,
"exhibitorCount": 250,
"personnelCount": 1800
}
}
Error responses
400 Bad Request when event_id is invalid.
401 Unauthorized when the API key is missing, malformed, or invalid.
404 Not Found when the target event cannot be resolved.