Sarj AI Developer API Webhooks API

The webhooks API from Sarj AI Developer API — 3 operation(s) for webhooks.

Operations 4

GET /v1/beta/webhooks/ Get Webhook #
POST /v1/beta/webhooks/ Create Webhook #
DELETE /v1/beta/webhooks/{webhook_id} Delete Webhook #
POST /v1/beta/webhooks/test Test 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/sarj-ai-developer-api-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

sarj-ai-developer-api-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sarj.ai Voice Webhooks API
  version: 1.0.0
tags:
- name: Webhooks
paths:
  /v1/beta/webhooks/:
    get:
      tags:
      - Webhooks
      summary: Get Webhook
      operationId: webhooksGetWebhook
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                - $ref: '#/components/schemas/Webhook'
                - type: 'null'
                title: Response Webhooksgetwebhook
    post:
      tags:
      - Webhooks
      summary: Create Webhook
      operationId: webhooksCreateWebhook
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpsertWebhookRequestInput'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Webhook'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/beta/webhooks/{webhook_id}:
    delete:
      tags:
      - Webhooks
      summary: Delete Webhook
      operationId: webhooksDeleteWebhook
      parameters:
      - name: webhook_id
        in: path
        required: true
        schema:
          type: string
          title: Webhook Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteWebhookResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/beta/webhooks/test:
    post:
      tags:
      - Webhooks
      summary: Test Webhook
      operationId: webhooksTestWebhook
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TestWebhookInput'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                - $ref: '#/components/schemas/TestWebhookSuccessResponse'
                - $ref: '#/components/schemas/TestWebhookErrorResponse'
                title: Response Webhookstestwebhook
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TestWebhookSuccessResponse:
      properties:
        success:
          type: boolean
          const: true
          title: Success
        status:
          type: integer
          title: Status
        body:
          anyOf:
          - additionalProperties: true
            type: object
          - items: {}
            type: array
          - type: string
          - type: 'null'
          title: Body
      type: object
      required:
      - success
      - status
      - body
      title: TestWebhookSuccessResponse
    DeleteWebhookResponse:
      properties:
        status:
          type: string
          const: success
          title: Status
        message:
          type: string
          title: Message
      type: object
      required:
      - status
      - message
      title: DeleteWebhookResponse
    Webhook:
      properties:
        id:
          type: string
          title: Id
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        organization_id:
          type: string
          title: Organization Id
        creator_id:
          type: string
          title: Creator Id
        url:
          type: string
          title: Url
      type: object
      required:
      - id
      - created_at
      - updated_at
      - organization_id
      - creator_id
      - url
      title: Webhook
    TestWebhookInput:
      properties:
        test_url:
          type: string
          maxLength: 2083
          minLength: 1
          format: uri
          title: Test Url
      type: object
      required:
      - test_url
      title: TestWebhookInput
    UpsertWebhookRequestInput:
      properties:
        url:
          type: string
          title: Url
      type: object
      required:
      - url
      title: UpsertWebhookRequestInput
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TestWebhookErrorResponse:
      properties:
        success:
          type: boolean
          const: false
          title: Success
        error:
          type: string
          title: Error
      type: object
      required:
      - success
      - error
      title: TestWebhookErrorResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError