Ecosystem

Connects with everything.

Dunzo isn't an island. It's the orchestration layer that ties your entire tool stack together. Trigger workflows from code, CRMs, or chat apps.

Enterprise Ready

Languages & Frameworks We Integrate With

We integrate seamlessly with modern and legacy stacks across Ruby, Python, PHP, JavaScript, Java, Go, .NET, Kotlin, and Swift — powering everything from startups to enterprise platforms.

Ruby

  • Ruby on Rails
  • Sinatra
  • Hanami

Python

  • Django
  • Flask
  • FastAPI
  • Celery

PHP

  • Laravel
  • Symfony
  • CodeIgniter

JavaScript / TypeScript

  • Node.js
  • Express.js
  • NestJS
  • Next.js
  • React
  • Vue.js

Java

  • Spring
  • Spring Boot
  • Hibernate
  • Micronaut

Scala

  • Play Framework
  • Akka
  • Lagom

Go (Golang)

  • Gin
  • Echo
  • Fiber
  • Buffalo

C# / .NET

  • .NET Core / .NET 6+
  • ASP.NET MVC
  • ASP.NET Web API
  • Entity Framework

Kotlin

  • Ktor
  • Spring Boot (Kotlin)
  • Exposed ORM

Swift

  • Vapor
  • SwiftUI
  • Combine
Communication

Slack

Get real-time notifications where your team works. Approve items directly from channels.

Developer Tools

GitHub

Sync issues, pull requests, and deployment statuses directly to your release checklist.

Communications

Twilio

Deliver critical, time-sensitive alerts directly to your team via SMS. Configurable batching included.

Communications

Resend

Beautiful, delivery-optimized email summaries of checklist activity and deadline warnings.

AI

OpenAI Agents

Delegate checklist items to AI agents. Let them research, summarize, and draft content for you.

Project Management

Jira

Two-way sync. completing a task in Dunzo updates the corresponding Jira ticket instantly.

The "Serious Platform" Features

Enterprise-grade infrastructure doesn't just happen. We've built Dunzo to signal credibility and power to your most demanding stakeholders.

Ultra-low latency
Compliance focused

APIs

  • REST
  • GraphQL
  • Webhooks

Auth

  • OAuth2
  • OpenID Connect
  • SAML

Messaging

  • Twilio
  • WhatsApp
  • SMS
  • Email

Databases

  • PostgreSQL
  • MySQL
  • MongoDB
  • Redis

Infra

  • Docker
  • Kubernetes
  • Terraform

Cloud

  • AWS
  • GCP
  • Azure
Universal API

If it has an API,
it works with Dunzo.

Don't see your favorite tool listed? Use our Generic Webhook trigger or REST API to integrate any service in minutes.

const webhook = await dunzo.webhooks.create({
name: "New Stripe Customer",
source: "stripe",
events: ["customer.created"],
action: async (payload) => {
await dunzo.checklists.trigger({
template_id: "tpl_onboarding",
context: payload.data
}]);
}
});