Integrations
Connect Ventryx to the tools your team already uses. First-party integrations and a flexible webhook system mean you can fit Ventryx into any stack without custom glue code.
Native integrations
Ventryx ships pre-built connectors for the most common services in modern engineering and operations stacks:
| Integration | Category | What it does |
|---|---|---|
| Stripe | Billing | Sync usage metering, trigger invoicing, manage subscriptions |
| Slack | Notifications | Send workflow events and approval requests to channels or DMs |
| GitHub | CI/CD | Trigger workflows on PR merge, release, or issue events |
| PagerDuty | Alerting | Route high-severity events directly to on-call schedules |
| Datadog | Observability | Forward request metrics and logs to your Datadog workspace |
| AWS S3 | Storage | Archive event logs and pipeline outputs to S3 buckets |
| Google Workspace | Productivity | Send approval requests and notifications to Gmail and Calendar |
Webhook integrations
For services not covered by native integrations, register a webhook endpoint to receive real-time event payloads. Any service that accepts HTTP POST requests can be integrated this way.
curl -X POST https://api.ventryx.io/v1/webhooks \
-H "Authorization: Bearer $VENTRYX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://yourservice.com/hooks/ventryx",
"events": ["workflow.completed", "approval.requested"]
}'
OAuth 2.0 apps
Build OAuth-connected apps that let your customers authorize Ventryx to act on their behalf. Register your app in Settings → Developer Apps to receive a client ID and secret, then implement the standard authorization code flow.
https://auth.ventryx.io/oauth/authorize ?client_id=your_client_id &redirect_uri=https://yourapp.com/callback &scope=workflows:read+events:write &response_type=code &state=random_csrf_token
Zapier and Make
Ventryx is available as a native app on Zapier and Make (formerly Integromat), enabling no-code connections to 5,000+ services. Search for "Ventryx" in either platform to get started.