Events
Get Events Calendar
Returns events within a date range in FullCalendar-compatible format for display in booking and events calendars.
GET
Get Events Calendar
Documentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
Get Events Calendar
Returns published events within a given date range formatted for the FullCalendar library. Used alongside booking slots in the portal’s calendar view to give customers a unified view of space bookings and events.This endpoint uses the
/en/ legacy route prefix rather than /api/public/. It does not support _shape field shaping.Authentication
No authentication required.Query Parameters
ISO 8601 UTC datetime for the start of the range. Example:
2026-03-01T00:00:00.000ZISO 8601 UTC datetime for the end of the range. Example:
2026-03-31T23:59:59.999ZResponse
Returns anEventsCalendar array — a flat list of EventsCalendarEvent objects, one per event that falls within the requested range.
EventsCalendarEvent Fields
Unique event identifier (stringified integer) compatible with FullCalendar’s
id field.Event display name shown on the calendar.
Event start datetime (ISO 8601).
Event end datetime (ISO 8601).
When
true, the event is displayed as an all-day block in the calendar.Brief summary displayed in the calendar event tooltip or popover.
Name of the coworking location that published the event.
Venue name or room identifier.
Full postal address of the event venue.
External ticket purchase URL if the operator has set a custom tickets page.
External event URL (e.g. a Zoom or Eventbrite link).
Portal-relative URL to the event detail page. Use this to navigate on calendar item click.
Always
true — distinguishes event entries from booking entries when both are rendered in the same FullCalendar instance.Always
false for event entries — events cannot be dragged or resized in the calendar.When
true, FullCalendar should treat the start/end values as local times rather than converting from UTC.ID of the linked bookable resource, if the event is associated with a specific room or desk.
Display name of the linked resource.
Examples
Fetch calendar events for March 2026
TypeScript Integration
Usage in Portal
| Context | Source file |
|---|---|
Bookings search / resource calendar (/bookings) | src/views/public/bookings/useBookingsSearchData.tsx |
Error Responses
start or end is missing or not a valid ISO 8601 datetime string.Related Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /api/public/events | Paginated events list with full event metadata |
GET | /api/public/events/{id} | Full detail for a specific event |
GET | /en/bookings/fullCalendarBookings | Bookings in FullCalendar format (same calendar) |
Get Events Calendar