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

# Fetch a meeting event



## OpenAPI

````yaml externals-reference/generated.yaml get /v1/meetingevents/{slug}
openapi: 3.1.0
info:
  description: >
    For more information about Sakari, visit
    [https://sakari.io](https://sakari.io).
  version: 1.0.0
  title: Sakari
  termsOfService: https://sakari.io/terms-service.html
  contact:
    email: help@sakari.io
servers:
  - description: Sakari Externals API
    url: https://external.sakari.io
security: []
tags:
  - name: meetings
    description: Book, reschedule or cancel meetings
paths:
  /v1/meetingevents/{slug}:
    get:
      tags:
        - externals.meetingevents
      summary: Fetch a meeting event
      operationId: externals.meetingevents.fetch
      parameters:
        - $ref: '#/components/parameters/slug'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingEventResponse'
        4XX:
          $ref: '#/components/responses/4XX'
        5XX:
          $ref: '#/components/responses/5XX'
components:
  parameters:
    slug:
      name: slug
      in: path
      required: true
      description: The slug of the meeting event
      schema:
        type: string
  schemas:
    MeetingEventResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              $ref: '#/components/schemas/MeetingEvent'
      required:
        - data
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
      required:
        - success
    MeetingEvent:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        slug:
          type: string
        description:
          type: string
        durations:
          type: array
          items:
            type: number
        allowAdditionalAttendees:
          type: boolean
        hosts:
          type: array
          items: b6194df2-7397-48f4-bb41-3051a2f13504
        styling:
          type: object
          properties:
            logo:
              type: string
            cover:
              type: string
        availability:
          type: object
          properties:
            timezone:
              type: string
            times:
              type: object
              properties:
                sun:
                  type: array
                  items:
                    $ref: '#/components/schemas/Hours'
                mon:
                  type: array
                  items:
                    $ref: '#/components/schemas/Hours'
                tue:
                  type: array
                  items:
                    $ref: '#/components/schemas/Hours'
                wed:
                  type: array
                  items:
                    $ref: '#/components/schemas/Hours'
                thu:
                  type: array
                  items:
                    $ref: '#/components/schemas/Hours'
                fri:
                  type: array
                  items:
                    $ref: '#/components/schemas/Hours'
                sat:
                  type: array
                  items:
                    $ref: '#/components/schemas/Hours'
          required:
            - timezone
            - times
        bufferTime:
          type: number
        minimumNotice:
          type: number
        enabled:
          type: boolean
      required:
        - name
        - slug
        - durations
        - hosts
    ErrorResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            error:
              $ref: '#/components/schemas/Error'
      required:
        - error
    Hours:
      type: object
      properties:
        start: cfbef2ed-6bd6-4472-91a7-1844f3a0b3a5
        end:
          type: object
          properties:
            hour:
              type: number
            minute:
              type: number
          required:
            - hour
            - minute
      required:
        - start
        - end
    Error:
      type: object
      properties:
        code:
          type: string
          example: CONT-010
        description:
          type: string
          example: Contact has requested no further communication
      required:
        - code
        - description
  responses:
    4XX:
      description: invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    5XX:
      description: invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'

````