Duda Webhooks API

Subscribe to site and account events

Operations 1

POST /sites/multiscreen/webhooks Create 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/duda-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

duda-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Duda Partner Accounts Webhooks API
  version: '1.0'
  description: The Duda Partner API is a REST API that enables partners and agencies to programmatically create and manage websites, pages, templates, sections, content, widgets, eCommerce stores, blog posts, dynamic collections, memberships, bookings, and white-label client portal access. It supports SSO for seamless user login into the Duda editor and provides webhook integration for event-driven workflows.
  contact:
    name: Duda Developer Documentation
    url: https://developer.duda.co
  termsOfService: https://www.duda.co/terms-of-service
  license:
    name: Proprietary
servers:
- url: https://api.duda.co/api
  description: Duda Production API
security:
- basicAuth: []
tags:
- name: Webhooks
  description: Subscribe to site and account events
paths:
  /sites/multiscreen/webhooks:
    post:
      operationId: create-webhook
      summary: Create Webhook
      description: Creates a new webhook subscription for site or account events.
      tags:
      - Webhooks
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - endpoint
              - event_types
              - resource_type
              properties:
                endpoint:
                  type: string
                  description: The URL endpoint to receive webhook payloads.
                event_types:
                  type: array
                  items:
                    type: string
                  description: List of event types to subscribe to.
                external_id:
                  type: string
                resource_id:
                  type: string
                resource_type:
                  type: string
                  enum:
                  - SITE
                  - ACCOUNT
      responses:
        '200':
          description: Webhook created
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                  active:
                    type: boolean
                  endpoint:
                    type: string
                  event_types:
                    type: array
                    items:
                      type: string
                  external_id:
                    type: string
                  resource:
                    type: object
                    properties:
                      resourceId:
                        type: string
                      type:
                        type: string
                        enum:
                        - SITE
                        - ACCOUNT
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication using API user credentials (base64 encoded user:pass)