Getting Started

Complete documentation and guides for implementing LeadSalesHub in your lead distribution workflow.

Getting Started with LeadSalesHub

Overview

LeadSalesHub is a comprehensive lead distribution platform that enables performance marketers to route, price, and manage leads efficiently while maintaining TCPA compliance.

Prerequisites

  • Active LeadSalesHub account
  • API credentials (provided after signup)
  • Basic understanding of HTTP/REST APIs
  • Development environment for testing

Quick Setup

1
Account Setup

Create your LeadSalesHub account and obtain your API credentials from the dashboard.

2
Configure Buyers

Set up your buyer network with endpoints, caps, and filtering rules.

3
Test Integration

Send test leads through our sandbox environment to verify your setup.

4
Go Live

Switch to production mode and start routing real leads to your buyers.

First API Call

Here's a simple example to submit your first lead:

curl -X POST https://api.leadsaleshub.com/v1/leads \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "first_name": "John",
    "last_name": "Doe",
    "email": "john@example.com",
    "phone": "555-123-4567",
    "zip_code": "90210",
    "vertical": "insurance"
  }'