> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tktchurch.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get event detail

> Public event detail with expanded ministry and campus. eventId accepts the stable id or the slug. No auth.



## OpenAPI

````yaml /api-reference/openapi.json get /events/{eventId}
openapi: 3.0.1
info:
  title: TKTChurch Identity (TKTAuth)
  version: v1
  description: >-
    Authorization server at prod-auth.tktchurch.com. Public OAuth2/OIDC
    endpoints need no auth; /api/v1 self routes need a Bearer access token
    issued to the user. the listed resource:action permission. Management lists
    return `{ metadata: { total, page, per }, items: [...] }`.
servers:
  - url: https://prod-auth.tktchurch.com
    description: Production
  - url: http://localhost:8080
    description: Local backchannel
  - url: https://calendar.tktchurch.net
    description: Calendar (Events)
security: []
tags:
  - name: authentication
    description: >-
      OAuth2 (RFC 6749), PAR (9126), revocation/introspection (7009/7662),
      device flow (8628), OIDC, registration (7591), sign-in flows, password
      reset and federated identity.
  - name: users
    description: >-
      Signed-in profile, identities, recovery, membership and Member Pass.
      Bearer only.
  - name: membership
    description: Membership matching, Member Pass, invite claims and family join codes.
  - name: sessions
    description: List, inspect and revoke your own sessions. Bearer only.
  - name: security
    description: TOTP setup and passkey management. Bearer only.
  - name: consents-privacy
    description: Your consent grants, privacy notices, data requests and exports.
  - name: family
    description: >-
      Families, dependents and guardian delegation. Bearer; delegation needs
      guardian:act_as.
  - name: system
    description: Liveness, readiness, build info and public maintenance status.
  - name: events
    description: >-
      Public church events listing, search and detail on calendar.tktchurch.net.
      No auth.
paths:
  /events/{eventId}:
    get:
      tags:
        - events
      summary: Get event detail
      description: >-
        Public event detail with expanded ministry and campus. eventId accepts
        the stable id or the slug. No auth.
      operationId: getEventDetail
      parameters:
        - name: eventId
          in: path
          required: true
          schema:
            type: string
            description: Stable event id or slug
            example: evt_01J9ZQ8XYZ
      responses:
        '200':
          description: Event with expanded ministry and campus
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventDetail'
              example:
                event:
                  eventId: evt_01J9ZQ8XYZ
                  slug: sunday-celebration-service
                  url: /events/sunday-celebration-service
                  title: Sunday Celebration Service
                  description: Join us for worship, the Word, and communion.
                  eventType: SERVICE
                  serviceType: First Service
                  startDate: '2026-09-27'
                  startTime: '09:00'
                  endDate: '2026-09-27'
                  endTime: '11:30'
                  timezone: Africa/Lagos
                  ministryId: min_celebration
                  campusId: cmp_lagos
                  status: SCHEDULED
                  visibility: public
                  audience:
                    - members
                    - newcomers
                  attendanceModes:
                    - QR_CODE
                  capacity: 1500
                  organizer: Celebration Ministry
                  imageUrl: >-
                    https://assets.tktchurch.net/cal/events/evt_01J9ZQ8XYZ/banner.webp
                  location:
                    name: Main Sanctuary
                    address: Lagos
                  tags:
                    - sunday
                    - service
                    - worship
                  createdAt: '2026-08-10T09:00:00Z'
                ministry:
                  ministryId: min_celebration
                  name: Celebration
                campus:
                  campusId: cmp_lagos
                  name: Lagos
        '400':
          description: Missing eventId
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CalendarError'
              example:
                error: true
                message: Missing eventId
                statusCode: 400
        '404':
          description: Unknown event
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CalendarError'
              example:
                error: true
                message: Event not found
                statusCode: 404
      security: []
      servers:
        - url: https://calendar.tktchurch.net
          description: Calendar (Events)
components:
  schemas:
    EventDetail:
      type: object
      properties:
        event:
          $ref: '#/components/schemas/CalendarEvent'
          type: object
          description: Full event record
        ministry:
          type: object
          description: Expanded ministry summary, when linked
        campus:
          type: object
          description: Expanded campus summary, when linked
    CalendarError:
      type: object
      properties:
        error:
          type: boolean
          description: Always true for errors
          example: true
        message:
          type: string
          description: Human-readable reason
        statusCode:
          type: integer
          description: HTTP status echoed in the body
        details:
          type: array
          description: Optional per-field details
          items:
            type: string
      required:
        - error
        - message
        - statusCode
    CalendarEvent:
      type: object
      properties:
        eventId:
          type: string
          description: Stable event id (evt_…)
          example: evt_01J9ZQ8XYZ
        slug:
          type: string
          description: URL slug
          example: sunday-celebration-service
        url:
          type: string
          description: Relative web path
          example: /events/sunday-celebration-service
        title:
          type: string
          description: Event title
          example: Sunday Celebration Service
        description:
          type: string
          description: Long description (may contain markup)
        eventType:
          type: string
          description: Event category
          enum:
            - SERVICE
            - CONFERENCE
            - COURSE
            - SPECIAL_EVENT
            - PRAYER_CAMPAIGN
            - LIFE_GROUP
            - CAMP
            - WORKSHOP
        serviceType:
          type: string
          description: Service slot, if applicable
          example: First Service
        startDate:
          type: string
          description: Start date YYYY-MM-DD
          example: '2026-09-27'
        startTime:
          type: string
          description: Start time HH:MM
          example: '09:00'
        endDate:
          type: string
          description: End date YYYY-MM-DD
        endTime:
          type: string
          description: End time HH:MM
        timezone:
          type: string
          description: IANA timezone
          example: Africa/Lagos
        ministryId:
          type: string
          description: Owning ministry id
        campusId:
          type: string
          description: Host campus id
        seriesId:
          type: string
          description: Series id for recurring events
        status:
          type: string
          description: Lifecycle status
          enum:
            - DRAFT
            - SCHEDULED
            - ACTIVE
            - COMPLETED
            - CANCELLED
            - POSTPONED
        visibility:
          type: string
          description: Visibility
          example: public
        audience:
          type: array
          description: Target audiences
          items:
            type: string
        attendanceModes:
          type: array
          description: Check-in modes
          items:
            type: string
            enum:
              - QR_CODE
              - RFID
              - MANUAL
              - SELF_CHECK_IN
              - NONE
        capacity:
          type: integer
          description: Seat capacity, if capped
        organizer:
          type: string
          description: Organizer name
        imageUrl:
          type: string
          description: Stable CDN artwork URL (cache long-term, no expiry)
          example: https://assets.tktchurch.net/cal/events/evt_01J9ZQ8XYZ/banner.webp
        registrationUrl:
          type: string
          description: External registration link, if any
        location:
          type: object
          description: 'Venue: name, address, coordinates'
        tags:
          type: array
          description: Search tags
          items:
            type: string
        createdAt:
          type: string
          description: Creation timestamp
          format: date-time
        updatedAt:
          type: string
          description: Last-update timestamp
          format: date-time

````