Securitize Webhooks API

The Webhooks API from Securitize — 4 operation(s) for webhooks.

Operations 7

GET /v1/webhooks/events #
GET /v1/webhooks/subscriptions #
POST /v1/webhooks/subscriptions #
GET /v1/webhooks/subscriptions/{subscriptionId} #
PATCH /v1/webhooks/subscriptions/{subscriptionId} #
DELETE /v1/webhooks/subscriptions/{subscriptionId} #
POST /v1/webhooks/settings/signature #

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/securitize-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

securitize-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Securitize Webhooks API
  version: 3.0.0
  description: 'Operations tagged Webhooks across 2 of this provider''s published API definitions: securitize-domains-openapi-original.json, securitize-webhooks-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://public-api.securitize.io/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- ApiKeyAuth: []
tags:
- name: Webhooks
paths:
  /v1/webhooks/events:
    get:
      operationId: EventsController_getEvents
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookEventDto'
      tags:
      - Webhooks
  /v1/webhooks/subscriptions:
    get:
      operationId: SubscriptionsController_getSubscriptions
      parameters:
      - name: domainId
        required: false
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookSubscriptionResponseDto'
      tags:
      - Webhooks
    post:
      operationId: SubscriptionsController_createSubscription
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateWebhookSubscriptionBodyDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookSubscriptionResponseDto'
      tags:
      - Webhooks
  /v1/webhooks/subscriptions/{subscriptionId}:
    get:
      operationId: SubscriptionsController_getSubscription
      parameters:
      - name: subscriptionId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookSubscriptionResponseDto'
      tags:
      - Webhooks
    patch:
      operationId: SubscriptionsController_updateSubscription
      parameters:
      - name: subscriptionId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateWebhookSubscriptionBodyDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookSubscriptionResponseDto'
      tags:
      - Webhooks
    delete:
      operationId: SubscriptionsController_deleteSubscription
      parameters:
      - name: subscriptionId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Webhooks
  /v1/webhooks/settings/signature:
    post:
      operationId: SettingsController_createSignature
      parameters: []
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookSignatureResponseDto'
      tags:
      - Webhooks
components:
  schemas:
    WebhookSignatureResponseDto:
      type: object
      properties:
        publicKey:
          type: string
      required:
      - publicKey
    CreateWebhookSubscriptionBodyDto:
      type: object
      properties:
        domainId:
          type: string
        eventType:
          type: string
        payloadUrl:
          type: string
        isActive:
          type: boolean
          default: true
      required:
      - domainId
      - eventType
      - payloadUrl
    WebhookEventDto:
      type: object
      properties:
        eventType:
          type: string
        properties:
          type: array
          items:
            type: string
      required:
      - eventType
      - properties
    UpdateWebhookSubscriptionBodyDto:
      type: object
      properties:
        payloadUrl:
          type: string
        isActive:
          type: boolean
    WebhookSubscriptionResponseDto:
      type: object
      properties:
        id:
          type: string
        domainId:
          type: string
        eventType:
          type: string
        nonce:
          type: number
        payloadUrl:
          type: string
        isActive:
          type: boolean
      required:
      - id
      - domainId
      - eventType
      - nonce
      - payloadUrl
      - isActive
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API Key Format as "apiKey <key_id>:<key_secret>"
x-refined-from:
- securitize-domains-openapi-original.json
- securitize-webhooks-api-openapi.yml