Getting Started
Quickstart
Get started with Lime Journey in minutes
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get started with Lime Journey in minutes
Email: demo@limejourney.com
Password: demo@limejourney.com
npm install limejourney
yarn add limejourney
pnpm add @limejourney/sdk
import { LimeJourney } from '@limejourney/sdk';
const client = new LimeJourney({
apiKey: 'your-api-key'
});
await client.events.create({
entityId: 'user-123',
event: 'sign_in',
properties: {
device: 'mobile',
location: 'US'
}
});