NazexaNazexa
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

CategoryIntegrationsSetup
CI/CDGitHub Actions, GitLab CI, Buildkite, CircleCI, JenkinsOAuth app
ObservabilityDatadog, Grafana, Honeycomb, New Relic, SentryAPI key
IdentityOkta, Entra ID, Auth0, Google Workspace, JumpCloudSAML / OIDC
DataSnowflake, BigQuery, dbt, Fivetran, AirbyteConnector
CommunicationSlack, Teams, PagerDuty, Opsgenie, DiscordWebhook
BillingStripe, Paddle, ChargebeeAPI 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.