Skip to main content

Events

Get upcoming events

GET /api/public/studio/{studioId}/events

Returns events (classes without a dance type) in a 7-day window. Social nights, workshops, and showcases typically appear here.

Query parameters

ParameterTypeDescription
fromISO 8601 date or datetimeStart of the 7-day window. Defaults to today.

Response

[
{
"id": "evt_001",
"name": "Friday Social",
"dayOfWeek": "friday",
"startTime": "21:00",
"endTime": "01:00",
"level": "General",
"room": null,
"date": "2025-06-07",
"price": 100,
"capacity": null,
"allowPackages": null,
"description": { "en": "Open social dancing", "es": "Baile social abierto" },
"host": {
"id": "instr_xyz",
"name": "Maria",
"lastname": "García",
"image": null
}
}
]
note

Events return date as a YYYY-MM-DD date-only string (not a full ISO timestamp). The SDKs parse this as UTC midnight.

Booking an event

https://www.bailaya.com/book/{eventId}