LIScrapoX Documentation
Welcome to the LIScrapoX documentation. Here you'll find everything you need to know about using our LinkedIn lead generation and email verification tool.
Latest Version: 2.5.0
- ✓ Enhanced email verification accuracy
- ✓ New CRM integrations
- ✓ Improved rate limit handling
- ✓ Bug fixes and performance improvements
Installation
Chrome Extension
- Visit the Chrome Web Store
- Click "Add to Chrome"
- Accept the permissions
- Click the LIScrapoX icon in your browser toolbar
- Sign in or create an account
API Integration
# Install via npm
npm install liscrapox-sdk
# Install via pip
pip install liscrapox
# Install via composer
composer require liscrapox/sdk
Quick Start Guide
Follow these steps to start extracting leads from LinkedIn:
1. Configure Your Search
- Log into LinkedIn
- Navigate to LinkedIn Search
- Apply your desired filters
- Click the LIScrapoX extension icon
2. Extract Leads
- Select the data points you want to extract
- Choose your export format
- Click "Start Extraction"
- Wait for the process to complete
3. Verify Emails
- Select leads for email verification
- Click "Verify Emails"
- Review verification results
- Export verified leads
Lead Extraction
LIScrapoX can extract various data points from LinkedIn profiles:
Basic Information
- ✓ Full Name
- ✓ Job Title
- ✓ Company
- ✓ Location
- ✓ Industry
Contact Details
- ✓ Email Address
- ✓ Phone Number
- ✓ Social Profiles
- ✓ Website
- ✓ LinkedIn URL
Email Verification
Our email verification system uses multiple methods to ensure high accuracy:
Verification Methods
- • SMTP Validation
- • MX Record Check
- • Syntax Validation
- • Domain Verification
- • Pattern Matching
Confidence Scores
95-100%
High confidence - Email exists and is active
70-94%
Medium confidence - Email likely exists
0-69%
Low confidence - Email may not exist
Data Export
Export your leads in various formats:
Export Formats
- ✓ CSV
- ✓ Excel (XLSX)
- ✓ JSON
- ✓ PDF Report
Direct Export
- ✓ Salesforce
- ✓ HubSpot
- ✓ Pipedrive
- ✓ Custom CRM
API Authentication
All API requests require authentication using an API key.
curl -X GET "https://api.liscrapox.com/v1/leads" \
-H "Authorization: Bearer YOUR_API_KEY"
Getting Your API Key
- Log into your LIScrapoX dashboard
- Navigate to Settings → API
- Click "Generate API Key"
- Copy your API key and store it securely
API Endpoints
Leads
GET
/v1/leads
List all leads
POST
/v1/leads
Create a new lead
PUT
/v1/leads/{id}
Update a lead
Email Verification
POST
/v1/verify/email
Verify a single email
POST
/v1/verify/bulk
Verify multiple emails
Rate Limits
API rate limits vary by plan:
Plan | Requests/Day | Concurrent |
---|---|---|
Basic | 1,000 | 2 |
Pro | 5,000 | 5 |
Enterprise | Custom | Custom |
CRM Integration
Integrate LIScrapoX with popular CRM systems:
Salesforce Integration
const LiScrapo = require('liscrapox');
const client = new LiScrapo({ apiKey: 'YOUR_API_KEY' });
// Configure Salesforce integration
client.integrations.salesforce.configure({
instanceUrl: 'YOUR_INSTANCE_URL',
accessToken: 'YOUR_ACCESS_TOKEN'
});
HubSpot Integration
const LiScrapo = require('liscrapox');
const client = new LiScrapo({ apiKey: 'YOUR_API_KEY' });
// Configure HubSpot integration
client.integrations.hubspot.configure({
apiKey: 'YOUR_HUBSPOT_API_KEY'
});
Zapier Integration
Automate your workflow with Zapier:
Available Triggers
- • New Lead Found
- • Email Verified
- • Export Completed
- • Custom Webhook Events
Webhooks
Set up webhooks to receive real-time notifications:
curl -X POST "https://api.liscrapox.com/v1/webhooks" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://your-domain.com/webhook",
"events": ["lead.created", "email.verified"]
}'