Documentation

Build with Merchancely

Everything you need to integrate AI-powered marketing into your applications.

Quick Example

JavaScriptUsing the Merchancely SDK
import { Merchancely } from '@merchancely/sdk';

const client = new Merchancely('your_api_key');

// Qualify a lead
const result = await client.leads.qualify({
  email: 'lead@example.com',
  name: 'John Doe',
  company: 'Acme Corp',
  source: 'website'
});

console.log(result.score); // 94
console.log(result.intent); // 'high'
console.log(result.recommendedFunnel); // 'enterprise'