SyncRivo Documentation
Everything you need to build powerful integrations and connect your favorite tools. Get started in minutes with our comprehensive guides and API reference.
Quick Start
Get up and running with SyncRivo in less than 5 minutes. Create your first integration and start syncing data between your favorite tools.
// Install SyncRivo SDK
npm install @syncrivo/sdk
// Initialize client
import { SyncRivo } from '@syncrivo/sdk';
const client = new SyncRivo({
apiKey: 'your-api-key',
environment: 'production' // or 'sandbox'
});
// Create your first integration
const integration = await client.integrations.create({
name: 'My Slack Integration',
source: 'slack',
destination: 'webhook',
config: {
slackToken: 'xoxb-your-token',
webhookUrl: 'https://your-api.com/webhook'
}
});
console.log('Integration created:', integration.id);Need help? Check out our step-by-step guide →
Popular Examples
Slack to Webhook
Forward Slack messages to your API
Google Drive Sync
Monitor file changes in Google Drive
Notion Database
Sync Notion pages to your database
Getting Started
Create an Account
Sign up for a free SyncRivo account and get your API key from the dashboard.
Install the SDK
Use npm, pip, or our REST API directly to start building integrations.
Build Your First Integration
Follow our quick start guide to create your first data sync in minutes.