Skip to main content

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

NameRequiredTypeNotes
event_idYesstringEvent identifier returned by Lensmor event endpoints.

Response body

Top-level fields

FieldTypeNotes
eventobjectSame event summary shape as GET /external/events/list items[].
summaryobjectBrief rollup metadata.

summary fields

FieldTypeNotes
attendeeCountintegerDefaults to 0 when absent in storage.
exhibitorCountintegerDefaults to 0 when absent in storage.
personnelCountintegerDefaults 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.