Extend Your Possibilities
FastKit integrates seamlessly with your favorite tools. Automate workflows and extend functionality.
Popular Integrations
Most-used integrations by the FastKit community
GitHub
Auto-deploy from GitHub with webhooks and CI/CD
Slack
Get deployment alerts in your Slack workspace
GitLab
Deploy from GitLab CI/CD pipelines instantly
Docker
Deploy Docker containers directly
Discord
Send deployment and error notifications to Discord
Stripe
Payment processing and billing integration
Build Custom Integrations
Use our REST API and webhooks to build exactly what you need. We provide comprehensive documentation and SDKs.
-
Full REST API
Access all FastKit features programmatically
-
Real-time Webhooks
Get instant notifications for all events
-
OAuth 2.0
Secure authentication for your app
// Create webhook
const webhook = await fastkit.webhooks.create({
url: 'https://myapp.com/webhook',
events: ['deployment.success'],
headers: { 'Authorization': 'Bearer TOKEN' }
});
// Listen for events
app.post('/webhook', (req, res) => {
const { type, data } = req.body;
if (type === 'deployment.success') {
notifyTeam(data);
}
res.json({ ok: true });
});
Need a specific integration?
We're always adding new integrations. Tell us what you need.
Request Integration