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

# Create a Lyra meeting

> Creates a meeting and optional participants, returning a video call payload.



## OpenAPI

````yaml https://app.lyra.so/openapi.json post /meeting
openapi: 3.0.0
info:
  title: Lyra API
  version: '1.0'
servers:
  - url: https://app.lyra.so/api/v1
    description: Production server
  - url: http://localhost:3000/api/v1
    description: Development server
security:
  - LyraApiKey: []
  - OAuth2: []
tags:
  - name: Authentication
    description: Verify API keys and OAuth tokens
  - name: Meetings
    description: Create and manage Lyra meetings
  - name: Webhooks
    description: Manage webhook subscriptions
paths:
  /meeting:
    post:
      tags:
        - Meetings
      summary: Create a Lyra meeting
      description: >-
        Creates a meeting and optional participants, returning a video call
        payload.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - title
              properties:
                title:
                  type: string
                  example: Customer kickoff
                start:
                  type: string
                  format: date-time
                  nullable: true
                  example: '2026-02-03T15:00:00.000Z'
                attendees:
                  oneOf:
                    - type: string
                      format: email
                      example: alex@acme.com
                    - type: array
                      items:
                        type: string
                        format: email
                      example:
                        - alex@acme.com
                        - sam@acme.com
      responses:
        '200':
          description: Meeting created
          content:
            application/json:
              schema:
                type: object
                required:
                  - type
                  - id
                  - password
                  - url
                properties:
                  type:
                    type: string
                    example: lyra_video
                  id:
                    type: string
                    example: meeting_123
                  password:
                    type: string
                    example: ''
                  url:
                    type: string
                    format: uri
                    example: https://app.lyra.so/meeting/meeting_123
        '400':
          description: Invalid request body
        '401':
          description: Missing or invalid token
        '403':
          description: Insufficient scope
        '500':
          description: Failed to create meeting
      security:
        - LyraApiKey: []
        - OAuth2:
            - meeting.create
components:
  securitySchemes:
    LyraApiKey:
      type: http
      scheme: bearer
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://app.lyra.so/api/v1/oauth/authorize
          tokenUrl: https://app.lyra.so/api/v1/oauth/token
          scopes: {}

````