Impact Radius Webhook API

Endpoints for managing webhook subscriptions: list current subscriptions, register new endpoint URLs, remove existing ones, and send a test event to verify a subscription.

Operations 4

POST /{tenant_alias}/subscription Create a webhook subscription #
GET /{tenant_alias}/subscription List webhook subscriptions #
DELETE /{tenant_alias}/subscription/{url} Delete a webhook subscription #
POST /{tenant_alias}/subscription/{url}/test Test a webhook subscription #

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/impact-radius-webhook-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

impact-radius-webhook-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: impact.com Webhook API
  description: API for managing Webhook subscriptions.
  version: 1.0.0
servers:
- url: https://app.referralsaasquatch.com/api/v1
security:
- APIKey: []
tags:
- name: Webhook
  description: 'Endpoints for managing webhook subscriptions: list current subscriptions, register new endpoint URLs, remove existing ones, and send a test event to verify a subscription.

    '
paths:
  /{tenant_alias}/subscription:
    post:
      summary: Create a webhook subscription
      description: Subscribes a URL to receive events via webhooks.
      operationId: createWebhook
      tags:
      - Webhook
      parameters:
      - name: tenant_alias
        in: path
        description: Tenant being referenced. E.g. `"aboih12h16t"` or `"test_abo912126tastastt"`
        required: true
        schema:
          type: string
      requestBody:
        description: Details of the endpoint to be created
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookEndpoint'
      responses:
        '201':
          description: Webhook endpoint created
        default:
          $ref: '#/components/responses/GeneralError'
      x-codeSamples:
      - lang: cURL
        source: "curl -L \\\n  --request POST \\\n  --url 'https://app.referralsaasquatch.com/api/v1/{tenant_alias}/subscription' \\\n  --user '{AccountSID}:{AuthToken}' \\\n  --header 'Accept: */*'"
    get:
      summary: List webhook subscriptions
      description: Lists all the URLs that are currently subscribed to receive events via webhooks.
      operationId: listWebhooks
      tags:
      - Webhook
      parameters:
      - name: tenant_alias
        in: path
        description: Tenant being referenced. E.g. `"aboih12h16t"` or `"test_abo912126tastastt"`
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A list of endpoints
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookEndpoint'
              example:
              - endpointUrl: https://example.com/hook
                name: Zapier
                source: MANUAL
                webhookTypes:
                - '*'
              - endpointUrl: https://another.example.com/hook
                name: Example
                source: MANUAL
                webhookTypes:
                - '*'
        default:
          $ref: '#/components/responses/GeneralError'
      x-codeSamples:
      - lang: cURL
        source: "curl -L \\\n  --url 'https://app.referralsaasquatch.com/api/v1/{tenant_alias}/subscription' \\\n  --user '{AccountSID}:{AuthToken}' \\\n  --header 'Accept: */*'"
  /{tenant_alias}/subscription/{url}:
    delete:
      summary: Delete a webhook subscription
      description: Removes a URL from receiving events via webhooks.
      operationId: deleteWebhook
      tags:
      - Webhook
      parameters:
      - name: tenant_alias
        in: path
        description: Tenant being referenced. E.g. `"aboih12h16t"` or `"test_abo912126tastastt"`
        required: true
        schema:
          type: string
      - name: url
        in: path
        description: The url of the endpoint that will be removed. URL-encode this field.
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Endpoint deleted
        default:
          $ref: '#/components/responses/GeneralError'
      x-codeSamples:
      - lang: cURL
        source: "curl -L \\\n  --request DELETE \\\n  --url 'https://app.referralsaasquatch.com/api/v1/{tenant_alias}/subscription/{url}' \\\n  --user '{AccountSID}:{AuthToken}' \\\n  --header 'Accept: */*'"
  /{tenant_alias}/subscription/{url}/test:
    post:
      summary: Test a webhook subscription
      description: Sends a test event to the specified webhook.
      operationId: testWebhook
      tags:
      - Webhook
      parameters:
      - name: tenant_alias
        in: path
        description: Tenant being referenced. E.g. `"aboih12h16t"` or `"test_abo912126tastastt"`
        required: true
        schema:
          type: string
      - name: url
        in: path
        description: The url of the endpoint to send a test message to. URL-encode this field.
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Test message sent
        default:
          $ref: '#/components/responses/GeneralError'
      x-codeSamples:
      - lang: cURL
        source: "curl -L \\\n  --request POST \\\n  --url 'https://app.referralsaasquatch.com/api/v1/{tenant_alias}/subscription/{url}/test' \\\n  --user '{AccountSID}:{AuthToken}' \\\n  --header 'Accept: */*'"
components:
  schemas:
    Error:
      properties:
        statusCode:
          description: The HTTP status code of the error
          type: integer
          format: int32
          example: 404
        message:
          description: The human-readable description of what went wrong. Use this to help you debug.
          type: string
        apiErrorCode:
          description: A machine error code
          type: string
        rsCode:
          description: A secondary machine-readable error code.
          type: string
          nullable: true
          example: RS042
    WebhookEndpoint:
      description: An endpoint to receive events
      properties:
        endpointUrl:
          type: string
          example: http://app.example.com/endpoint/sqtch
          description: The url of the endpoint that receives events.
        name:
          type: string
          example: Zapier
          description: Optional name of the endpoint that receives events.
        source:
          type: string
          readOnly: true
          description: How the subscription was created. Always `MANUAL` for subscriptions created via the API.
          example: MANUAL
        webhookTypes:
          type: array
          description: The event types this endpoint is subscribed to. `["*"]` means all event types.
          items:
            type: string
          example:
          - '*'
  responses:
    GeneralError:
      description: Unexpected Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    APIKey:
      type: http
      scheme: basic
      description: Authorize your requests using a tenant's API Key. Use this method of security only in server-to-server interactions.
x-default-client: cURL