← Back to blog
·3 min read·Leads Pro Team

Integrate Leads Pro in 5 Minutes: A Quick Start Guide

A step-by-step walkthrough of integrating the Leads Pro enrichment API into your application or workflow.

tutorialapi

This guide walks you through making your first enrichment API call with Leads Pro.

Step 1: Create an account

Sign up at leads-pro.co/register and choose a plan to get full API access.

Step 2: Get your API key

Go to Settings → API Keys in your dashboard and create a new key. Copy it immediately — it's only shown once.

Step 3: Make your first call

curl -X POST https://leads-pro.co/api/v1/enrich \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email": "amanda@northpeak.io"}'

Step 4: Parse the response

The response includes a person object, a company object, and meta with the confidence score and matched signals.

Step 5: Go batch

For bulk enrichment, use the batch endpoint with up to 100 items:

curl -X POST https://leads-pro.co/api/v1/enrich/batch \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"items": [{"email": "amanda@northpeak.io"}, {"name": "Priya Shah", "company": "Lattice Forge"}]}'

That's it. You're enriching leads programmatically in under 5 minutes.


Ready to enrich your leads?

Start with search, batch workflows, and enrichment in one workspace. Plans start at $9/month.

View pricing