Acquire customers, close deals, track revenue, and support users.
You have users. Now turn them into customers. headless.ly connects the entire revenue pipeline -- from lead to qualified to deal to subscription to payment -- in one graph with real Stripe data.
import { Contact, Deal } from '@headlessly/crm'import { Metric } from '@headlessly/analytics'// Qualify a leadawait Contact.qualify({ id: 'contact_uLoSfycy' })// Create and close a dealawait Deal.create({ name: 'Enterprise', value: 50_000, contact: 'contact_uLoSfycy', stage: 'Proposal' })await Deal.close({ id: 'deal_k7TmPvQx' })// Real MRR from Stripeconst mrr = await Metric.get('mrr')