Documentation

Comprehensive
documentation

Everything you need to integrate Journiq into your application, from quick start guides to detailed API references and best practices.

Get started in minutes

Send your first message with just a few lines of code

// Install the Journiq SDK
npm install @journiq/node

// Initialize the client
import { JourniqClient } from '@journiq/node';
const journiq = new JourniqClient('your-api-key');

// Track a customer event
await journiq.track({
  customerId: 'user_123',
  event: 'purchase_completed',
  properties: {
    amount: 99.99,
    product: 'Premium Plan'
  }
});

// Send a message
await journiq.messages.send({
  to: 'user_123',
  template: 'welcome_email',
  data: {
    firstName: 'John',
    plan: 'Premium'
  }
});

Need help getting started?

Our team is here to help you integrate Journiq successfully