Unifonic Webhooks API

The Webhooks API from Unifonic — 1 operation(s) for webhooks.

Operations 1

POST /providers/webhook Creates a 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/unifonic-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 email required.

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

OpenAPI Specification

unifonic-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unifonic Authenticate Call Management and Status Webhooks API
  description: Handles verifications with OTP to multiple channels
  contact:
    name: Unifonic Support
    url: support.unifonic.com/
    email: support@unifonic.com
  version: 2.0.0
servers:
- url: https://authenticate.cloud.api.unifonic.com
  variables: {}
security:
- authenticate-app-id: []
  Authorization: []
tags:
- name: Webhooks
paths:
  /providers/webhook:
    post:
      operationId: createsWebhook
      summary: Creates a Webhook
      description: This operation creates a Webhook for a particular voice application
      tags:
      - Webhooks
      parameters:
      - name: appsId
        description: applicationId found on Unifonic Console
        required: true
        in: header
        schema:
          type: string
      requestBody:
        content:
          application/json;charset=utf-8:
            schema:
              $ref: '#/components/schemas/Create_Webhook'
        description: payload for webhook creation. The url as specified will receive all of the call updates taking place on this voice application.
        required: true
      responses:
        '201':
          description: Created
components:
  schemas:
    Create_Webhook:
      type: object
      description: payload
      properties:
        url:
          type: string
          description: url to receive the webhook notifications
        basicAuthNeeded:
          type: boolean
          description: true or false
        username:
          type: string
          description: username for Base64
        password:
          type: string
          description: password for Base64
  securitySchemes:
    authenticate-app-id:
      type: apiKey
      name: x-authenticate-app-id
      in: header
    Authorization:
      type: apiKey
      description: Bearer Auth Token
      name: Authorization
      in: header
x-readme:
  explorer-enabled: true
  proxy-enabled: true