NotLuck API

Multi-tenant API backend for NotLuck clients

Endpoints

GET /{clientSlug}/events

Fetch calendar events for a specific client.

Available clients: collective

Example Request

curl https://api.notluck.co.uk/collective/events

Example Response

{
  "client": "Collective",
  "timestamp": "2026-01-10T12:00:00.000Z",
  "events": [
    {
      "id": "evt_123",
      "title": "Team Meeting",
      "startTime": "2026-01-15T10:00:00Z",
      "endTime": "2026-01-15T11:00:00Z"
    }
  ]
}