Svix · Arazzo Workflow

Svix Endpoint Health Check

Version 1.0.0

Send an example message to an endpoint and read its delivery statistics.

1 workflow 1 source API 1 provider
View Spec View on GitHub WebhookWebhooks As A ServiceWebhook DeliveryWebhook SendingEvent-DrivenEventingMessagingPub-SubStreamingIngestIntegrationReliabilityRetriesDeliverabilitySigningVerificationHMACStandard WebhooksMulti-TenantMulti-RegionEnterpriseSoftware-as-a-ServiceDeveloper PlatformRESTSOC 2HIPAAPCI DSSGDPROpen-SourceRustPolyglot SDKTerraformCLIArazzoWorkflows

Provider

svix

Workflows

endpoint-health-check
Send an example message to an endpoint and report its delivery stats.
Verifies the endpoint, sends an example message of the given event type, and reads the endpoint's delivery statistics.
3 steps inputs: appId, endpointId, eventType outputs: endpointId, messageId, stats
1
getEndpoint
Confirm the endpoint exists before testing it. Returns 200 with the endpoint object.
2
sendExample
Send the event type's example payload to the endpoint to exercise it. Returns 202 Accepted with the message object.
3
getStats
Read the endpoint's delivery statistics to report success and failure counts. Returns 200 with the stats object.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Svix Endpoint Health Check
  summary: Send an example message to an endpoint and read its delivery statistics.
  description: >-
    A lightweight liveness check for a configured webhook endpoint. The workflow
    confirms the endpoint exists, sends it an example message for the given
    event type, and then reads the endpoint's delivery statistics so the caller
    can see success and failure counts. Every step spells out its request inline
    so the flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: endpointApi
  url: ../openapi/svix-endpoint-api-openapi.yml
  type: openapi
workflows:
- workflowId: endpoint-health-check
  summary: Send an example message to an endpoint and report its delivery stats.
  description: >-
    Verifies the endpoint, sends an example message of the given event type, and
    reads the endpoint's delivery statistics.
  inputs:
    type: object
    required:
    - appId
    - endpointId
    - eventType
    properties:
      appId:
        type: string
        description: The id or uid of the application owning the endpoint.
      endpointId:
        type: string
        description: The id or uid of the endpoint to health check.
      eventType:
        type: string
        description: The event type name whose example payload is sent.
  steps:
  - stepId: getEndpoint
    description: >-
      Confirm the endpoint exists before testing it. Returns 200 with the
      endpoint object.
    operationId: v1.endpoint.get
    parameters:
    - name: app_id
      in: path
      value: $inputs.appId
    - name: endpoint_id
      in: path
      value: $inputs.endpointId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      endpointId: $response.body#/id
  - stepId: sendExample
    description: >-
      Send the event type's example payload to the endpoint to exercise it.
      Returns 202 Accepted with the message object.
    operationId: v1.endpoint.send-example
    parameters:
    - name: app_id
      in: path
      value: $inputs.appId
    - name: endpoint_id
      in: path
      value: $steps.getEndpoint.outputs.endpointId
    requestBody:
      contentType: application/json
      payload:
        eventType: $inputs.eventType
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      messageId: $response.body#/id
  - stepId: getStats
    description: >-
      Read the endpoint's delivery statistics to report success and failure
      counts. Returns 200 with the stats object.
    operationId: v1.endpoint.get-stats
    parameters:
    - name: app_id
      in: path
      value: $inputs.appId
    - name: endpoint_id
      in: path
      value: $steps.getEndpoint.outputs.endpointId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      stats: $response.body
  outputs:
    endpointId: $steps.getEndpoint.outputs.endpointId
    messageId: $steps.sendExample.outputs.messageId
    stats: $steps.getStats.outputs.stats

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/svix-endpoint-health-check-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.