Smartlook Webhooks API

Create and manage webhooks

Operations 5

GET /api/v1/webhooks Get webhooks #
POST /api/v1/webhooks Create webhook #
GET /api/v1/webhooks/{webhookOid} Get webhook #
PATCH /api/v1/webhooks/{webhookOid} Update webhook #
DELETE /api/v1/webhooks/{webhookOid} 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/smartlook-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

smartlook-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartlook REST Events Webhooks API
  version: 1.0.1
  description: 'The Smartlook REST API provides programmatic access to product analytics data including visitors, events, funnels, and session recordings. It supports bearer token authentication, cursor-based pagination, and regional endpoints to comply with data residency requirements.

    '
  contact:
    url: https://integrations.smartlook.com/docs/api-overview
  x-api-id: smartlook-rest-api
servers:
- url: https://api.eu.smartlook.cloud/
  description: REST API - EU region
- url: https://api.us.smartlook.cloud/
  description: REST API - US region
security:
- bearerAuth: []
tags:
- name: Webhooks
  description: Create and manage webhooks
paths:
  /api/v1/webhooks:
    get:
      operationId: getWebhooks
      summary: Get webhooks
      tags:
      - Webhooks
      parameters: []
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    url:
                      type: string
                    type:
                      type: string
                    enabled:
                      type: boolean
                  additionalProperties: false
                  required:
                  - id
                  - url
                  - type
                  - enabled
    post:
      operationId: createWebhook
      summary: Create webhook
      tags:
      - Webhooks
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                url:
                  type: string
                source:
                  type: string
                secret:
                  type: string
              additionalProperties: false
              required:
              - type
              - url
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                additionalProperties: false
  /api/v1/webhooks/{webhookOid}:
    get:
      operationId: getWebhook
      summary: Get webhook
      tags:
      - Webhooks
      parameters:
      - in: path
        name: webhookOid
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  url:
                    type: string
                  type:
                    type: string
                  enabled:
                    type: boolean
                  lastResponse:
                    type: string
                  lastResponseAt:
                    type: string
                additionalProperties: false
                required:
                - id
                - url
                - type
                - enabled
    patch:
      operationId: updateWebhook
      summary: Update webhook
      tags:
      - Webhooks
      parameters:
      - in: path
        name: webhookOid
        schema:
          type: string
        required: true
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                url:
                  type: string
                secret:
                  type: string
                enabled:
                  type: boolean
              additionalProperties: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                additionalProperties: false
    delete:
      operationId: deleteWebhook
      summary: Delete webhook
      tags:
      - Webhooks
      parameters:
      - in: path
        name: webhookOid
        schema:
          type: string
        required: true
      responses:
        '204':
          description: Success
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer