Skip to content

Documentation

Get started with Dataforge in minutes

Quick Start

Get up and running in under 5 minutes with our quick start guide.

Read guide

JavaScript SDK

Track events from your web applications with our JavaScript SDK.

View docs

React Native

Integrate Dataforge into your React Native mobile apps.

View docs

Python SDK

Server-side tracking with our Python SDK for backend services.

View docs

REST API

Direct API access for custom integrations and workflows.

API reference

Integrations

Connect Dataforge with your favorite tools and platforms.

Browse integrations

Get started in seconds

// Install the SDK
npm install @dataforge/analytics

// Initialize in your app
import { Dataforge } from '@dataforge/analytics';

const dataforge = new Dataforge({
  apiKey: 'YOUR_API_KEY',
  projectId: 'YOUR_PROJECT_ID'
});

// Track events
dataforge.track('Page Viewed', {
  page: 'Homepage',
  referrer: document.referrer
});

// Identify users
dataforge.identify('user-123', {
  name: 'Jane Doe',
  email: 'jane@example.com',
  plan: 'growth'
});