Luma Webhooks API

The Webhooks API from Luma — 5 operation(s) for webhooks.

Operations 5

GET /v1/webhooks/list List Webhooks
GET /v2/webhooks/get Get Webhook
POST /v2/webhooks/create Create Webhook
POST /v2/webhooks/update Update Webhook
POST /v1/webhooks/delete Delete Webhook

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/luma-webhooks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

luma-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Luma Webhooks API
  version: 1.0.0
  description: 'API for interacting with Luma''s event platform.


    ## Rate Limits


    The Luma API uses a per-minute rate limit shared across `GET` and `POST` requests:


    - **Calendar API keys** and OAuth tokens: **200 requests/minute** per calendar.

    - **Organization API keys**: **500 requests/minute** per organization.


    When you exceed the limit the API returns `429 Too Many Requests`. Back off before retrying.'
  contact:
    name: Luma Support
    url: https://help.luma.com
  license:
    name: Proprietary
servers:
- url: https://public-api.luma.com
  description: Production server
security:
- apiKeyAuth: []
tags:
- name: Webhooks
paths:
  /v1/webhooks/list:
    get:
      tags:
      - Webhooks
      summary: List Webhooks
      parameters:
      - name: pagination_cursor
        in: query
        required: false
        schema:
          description: Value of `next_cursor` from a previous request.
          type: string
        description: Value of `next_cursor` from a previous request.
      - name: pagination_limit
        in: query
        required: false
        schema:
          description: The number of items to return. The server will enforce a maximum number.
          type: number
        description: The number of items to return. The server will enforce a maximum number.
      description: List all webhook endpoints for the calendar.
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $schema: https://json-schema.org/draft/2020-12/schema
                type: object
                properties:
                  entries:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        url:
                          type: string
                        event_types:
                          type: array
                          items:
                            type: string
                            enum:
                            - '*'
                            - calendar.event.added
                            - calendar.person.subscribed
                            - event.canceled
                            - event.created
                            - event.updated
                            - guest.registered
                            - guest.updated
                            - ticket.registered
                        status:
                          type: string
                          enum:
                          - active
                          - paused
                        secret:
                          type: string
                        created_at:
                          type: string
                          format: date-time
                          pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$
                          description: ISO 8601 Datetime. For example, 2022-10-19T03:27:13.673Z
                      required:
                      - id
                      - url
                      - event_types
                      - status
                      - secret
                      - created_at
                  has_more:
                    type: boolean
                  next_cursor:
                    type: string
                required:
                - entries
                - has_more
  /v2/webhooks/get:
    get:
      tags:
      - Webhooks
      summary: Get Webhook
      parameters:
      - name: id
        in: query
        required: true
        schema:
          type: string
      description: Get details about a specific webhook endpoint.
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $schema: https://json-schema.org/draft/2020-12/schema
                type: object
                properties:
                  id:
                    type: string
                  url:
                    type: string
                  event_types:
                    type: array
                    items:
                      type: string
                      enum:
                      - '*'
                      - calendar.event.added
                      - calendar.person.subscribed
                      - event.canceled
                      - event.created
                      - event.updated
                      - guest.registered
                      - guest.updated
                      - ticket.registered
                  status:
                    type: string
                    enum:
                    - active
                    - paused
                  secret:
                    type: string
                  created_at:
                    type: string
                    format: date-time
                    pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$
                    description: ISO 8601 Datetime. For example, 2022-10-19T03:27:13.673Z
                required:
                - id
                - url
                - event_types
                - status
                - secret
                - created_at
  /v2/webhooks/create:
    post:
      tags:
      - Webhooks
      summary: Create Webhook
      description: Create a new webhook endpoint to receive event notifications.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              properties:
                url:
                  type: string
                  format: uri
                  pattern: ^http.*
                event_types:
                  minItems: 1
                  type: array
                  items:
                    type: string
                    enum:
                    - '*'
                    - calendar.event.added
                    - calendar.person.subscribed
                    - event.canceled
                    - event.created
                    - event.updated
                    - guest.registered
                    - guest.updated
                    - ticket.registered
              required:
              - url
              - event_types
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $schema: https://json-schema.org/draft/2020-12/schema
                type: object
                properties:
                  id:
                    type: string
                  url:
                    type: string
                  event_types:
                    type: array
                    items:
                      type: string
                      enum:
                      - '*'
                      - calendar.event.added
                      - calendar.person.subscribed
                      - event.canceled
                      - event.created
                      - event.updated
                      - guest.registered
                      - guest.updated
                      - ticket.registered
                  status:
                    type: string
                    enum:
                    - active
                    - paused
                  secret:
                    type: string
                  created_at:
                    type: string
                    format: date-time
                    pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$
                    description: ISO 8601 Datetime. For example, 2022-10-19T03:27:13.673Z
                required:
                - id
                - url
                - event_types
                - status
                - secret
                - created_at
  /v2/webhooks/update:
    post:
      tags:
      - Webhooks
      summary: Update Webhook
      description: Update a webhook endpoint's event types or status (active/paused).
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              properties:
                id:
                  type: string
                event_types:
                  minItems: 1
                  type: array
                  items:
                    type: string
                    enum:
                    - '*'
                    - calendar.event.added
                    - calendar.person.subscribed
                    - event.canceled
                    - event.created
                    - event.updated
                    - guest.registered
                    - guest.updated
                    - ticket.registered
                status:
                  type: string
                  enum:
                  - active
                  - paused
              required:
              - id
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $schema: https://json-schema.org/draft/2020-12/schema
                type: object
                properties:
                  id:
                    type: string
                  url:
                    type: string
                  event_types:
                    type: array
                    items:
                      type: string
                      enum:
                      - '*'
                      - calendar.event.added
                      - calendar.person.subscribed
                      - event.canceled
                      - event.created
                      - event.updated
                      - guest.registered
                      - guest.updated
                      - ticket.registered
                  status:
                    type: string
                    enum:
                    - active
                    - paused
                  secret:
                    type: string
                  created_at:
                    type: string
                    format: date-time
                    pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$
                    description: ISO 8601 Datetime. For example, 2022-10-19T03:27:13.673Z
                required:
                - id
                - url
                - event_types
                - status
                - secret
                - created_at
  /v1/webhooks/delete:
    post:
      tags:
      - Webhooks
      summary: Delete Webhook
      description: Delete a webhook endpoint.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              properties:
                id:
                  type: string
              required:
              - id
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                description: Empty response
                properties: {}
                additionalProperties: false
                x-stainless-empty-object: true
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-luma-api-key
      description: API key to authenticate requests to the Luma API. Generate an API key on your Luma dashboard.