Platform
Integrations
150+ integrations across CI, observability, identity and data.
150+ integrations across CI, observability, identity, data and communication — most take under five minutes to wire up.
Integration directory
| Category | Integrations | Setup |
|---|---|---|
| CI/CD | GitHub Actions, GitLab CI, Buildkite, CircleCI, Jenkins | OAuth app |
| Observability | Datadog, Grafana, Honeycomb, New Relic, Sentry | API key |
| Identity | Okta, Entra ID, Auth0, Google Workspace, JumpCloud | SAML / OIDC |
| Data | Snowflake, BigQuery, dbt, Fivetran, Airbyte | Connector |
| Communication | Slack, Teams, PagerDuty, Opsgenie, Discord | Webhook |
| Billing | Stripe, Paddle, Chargebee | API key |
How integrations work
Scoped credentials
Every integration gets its own token with the narrowest scope required, revocable independently.
Event-driven
Integrations subscribe to platform events rather than polling, so state stays fresh without rate-limit pain.
Build your own
Signed webhooks and a public OpenAPI schema mean a custom integration is an afternoon, not a quarter.
Custom webhook in a few lines
typescript
import { verifySignature } from "@nazexa/webhooks";
export async function POST(request: Request) {
const body = await request.text();
if (!verifySignature(body, request.headers, process.env.NZ_WEBHOOK_SECRET!)) {
return new Response("invalid signature", { status: 401 });
}
const event = JSON.parse(body);
if (event.type === "deployment.succeeded") await notifyTeam(event.data);
return new Response("ok");
}Missing an integration?
Request it, or build it against the public schema — we will list community integrations in the directory.