VeraDial Zapier Integration API

REST Hooks integration API used by VeraDial's native Zapier app and documented for direct callers - test a vdk_ API key, list selectable phone lines, fetch event samples, and subscribe or unsubscribe REST Hooks for call.screened, voicemail.received, sms.reply_sent and appointment.booked events, plus session-token API-key management routes. OpenAPI contract generated from the documentation by API Evangelist (2026-09-23); not the provider's own document.

Operations 8

POST /hooks Creates or reactivates a REST Hook subscription for Zapier events. #
DELETE /hooks/{id} Unsubscribes a REST Hook subscription. #
GET /keys Returns the API keys status including enabled, entitled, and list of key records. #
POST /keys Creates a new API key with the given name. #
DELETE /keys/{id} Revokes the API key and deactivates all linked subscriptions. #
GET /lines Returns the list of current active or suspended VeraDial-hosted lines for the authenticated account. #
GET /me Tests the API key and returns the connected VeraDial account details. #
GET /samples Returns up to three recent events or a deterministic synthetic sample matching the kind-and-line filter. #

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/zapier-integration-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

veradial-openapi-generated.yml Raw ↑
openapi: 3.1.0
info:
  title: VeraDial API
  version: '2026-09-23'
  description: 'GENERATED FROM DOCUMENTATION by API Evangelist on 2026-09-23: 8 operation(s) read from 1 public documentation page(s) (each operation
    names its page in x-source). This is not the provider''s published contract; VeraDial has published no machine-readable contract that the
    pipeline could find. Engine: anthropic.'
  x-evidence-tiers:
    code-example: 0
    documentation: 8
    pages-with-code: 0
    pages-read: 1
  x-generated-from: documentation
  x-provenance: generated
  x-authored-by: API Evangelist
  x-generated: '2026-09-23'
  x-generator: generate-contract-from-docs.py
  x-engine: anthropic
  x-sources:
  - https://veradial.com/help/zapier-integration-api
servers:
- url: https://api.veradial.com/api/v1/integrations/zapier
paths:
  /hooks:
    post:
      operationId: post_hooks
      tags:
      - Hooks
      summary: Creates or reactivates a REST Hook subscription for Zapier events.
      x-source: https://veradial.com/help/zapier-integration-api
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PostHooksRequest'
      responses:
        '201':
          description: Success (status as documented)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PostHooksResponse'
      x-evidence:
        kind: documentation
  /hooks/{id}:
    delete:
      operationId: delete_hooks_id
      tags:
      - Hooks
      summary: Unsubscribes a REST Hook subscription.
      x-source: https://veradial.com/help/zapier-integration-api
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success (status as documented)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteHooksIdResponse'
      x-evidence:
        kind: documentation
  /keys:
    get:
      operationId: get_keys
      tags:
      - Keys
      summary: Returns the API keys status including enabled, entitled, and list of key records.
      x-source: https://veradial.com/help/zapier-integration-api
      responses:
        '200':
          description: Success (status as documented)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetKeysResponse'
      x-evidence:
        kind: documentation
    post:
      operationId: post_keys
      tags:
      - Keys
      summary: Creates a new API key with the given name.
      x-source: https://veradial.com/help/zapier-integration-api
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PostKeysRequest'
      responses:
        '201':
          description: Success (status as documented)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PostKeysResponse'
      x-evidence:
        kind: documentation
  /keys/{id}:
    delete:
      operationId: delete_keys_id
      tags:
      - Keys
      summary: Revokes the API key and deactivates all linked subscriptions.
      x-source: https://veradial.com/help/zapier-integration-api
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Success (status as documented)
      x-evidence:
        kind: documentation
  /lines:
    get:
      operationId: get_lines
      tags:
      - Lines
      summary: Returns the list of current active or suspended VeraDial-hosted lines for the authenticated account.
      x-source: https://veradial.com/help/zapier-integration-api
      responses:
        '200':
          description: Success (status as documented)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetLinesResponse'
      x-evidence:
        kind: documentation
  /me:
    get:
      operationId: get_me
      tags:
      - Me
      summary: Tests the API key and returns the connected VeraDial account details.
      x-source: https://veradial.com/help/zapier-integration-api
      responses:
        '200':
          description: Success (status as documented)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMeResponse'
      x-evidence:
        kind: documentation
  /samples:
    get:
      operationId: get_samples
      tags:
      - Samples
      summary: Returns up to three recent events or a deterministic synthetic sample matching the kind-and-line filter.
      x-source: https://veradial.com/help/zapier-integration-api
      parameters:
      - name: kind
        in: query
        required: true
        schema:
          type: string
        description: 'Event type filter: call.screened, voicemail.received, sms.reply_sent, or appointment.booked'
      - name: lineId
        in: query
        required: false
        schema:
          type: string
        description: Optional line UUID; null or empty means all lines
      responses:
        '200':
          description: Success (status as documented)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetSamplesResponse'
      x-evidence:
        kind: documentation
components:
  schemas:
    PostHooksRequest:
      type: object
      properties:
        targetUrl:
          type: string
          description: Public HTTPS endpoint URL for webhook delivery
        kind:
          type: string
          description: 'Event type: call.screened, voicemail.received, sms.reply_sent, or appointment.booked'
        lineId:
          type: string
          description: Optional VeraDial line UUID; null or empty means all lines
      required:
      - targetUrl
      - kind
    PostHooksResponse:
      type: object
      properties:
        id:
          type: string
    DeleteHooksIdResponse:
      type: object
      properties:
        id:
          type: string
    GetKeysResponse:
      type: object
      properties:
        enabled:
          type: boolean
        entitled:
          type: boolean
        keys:
          type: array
    PostKeysRequest:
      type: object
      properties:
        name:
          type: string
          description: The name for the API key, e.g., "Zapier"
      required:
      - name
    PostKeysResponse:
      type: object
      properties:
        apiKey:
          type: string
          description: The secret API key value shown only in this response
    GetLinesResponse:
      type: object
      properties:
        lines:
          type: array
          description: Array of line objects containing id, phoneNumber, label, isPrimary, and status
    GetMeResponse:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
    GetSamplesResponse:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
        version:
          type: integer
        kind:
          type: string
        source:
          type: string
        occurredAt:
          type: string
        account:
          type: object
        line:
          type: object
        data:
          type: object
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
security:
- bearer: []
tags:
- name: Hooks
- name: Keys
- name: Lines
- name: Me
- name: Samples