API for Developers & AI Agents

Send a LinkedIn URL.
Get back the profile data.

Full name, work experience, education — returned as structured JSON. $0.01 per successful lookup. You only pay when we find the data.

curl
Python
Response
# Scrape a LinkedIn profile
curl -X POST https://api.scrapelinkedin.com/api/v1/scrape \
  -H "Content-Type: application/json" \
  -H "X-API-Key: li_live_YOUR_KEY" \
  -d '{"linkedin_url": "https://linkedin.com/in/johndoe"}'

# Check result (~20-30 seconds later)
curl https://api.scrapelinkedin.com/api/v1/scrape/PROFILE_ID \
  -H "X-API-Key: li_live_YOUR_KEY"

Quick Start

1

Register

POST /api/v1/auth/register with your email. You'll get a 6-digit verification code.

2

Verify & Get API Key

POST /api/v1/auth/verify with the code, then POST /api/v1/auth/api-key. You get 5 free credits.

3

Scrape Profiles

POST /api/v1/scrape with a LinkedIn URL. Poll the result by ID. Single or batch (up to 1,000 URLs).

How It Works

Pay Per Success

$0.01 per lookup. If we can't find the profile, the credit is automatically refunded. You only pay for data we return.

24-Hour Cache

Results are cached for 24 hours. Repeat lookups within that window are instant and free.

Batch Processing

Send up to 1,000 LinkedIn URLs in one request. Get webhook callbacks when the batch completes.

Structured Output

Full name, work experience (companies, titles, dates), and education — returned as clean JSON.

Pricing

Simple. No tiers. No subscriptions. Buy credits, use them whenever.

$1
100 lookups

$0.01 each

$10
1,000 lookups

$0.01 each

$100
10,000 lookups

$0.01 each

5 free credits on signup. Failed lookups are automatically refunded. Cached results are free.

API Endpoints

Scraping

MethodEndpointCostDescription
POST/api/v1/scrape1 creditScrape a single profile
POST/api/v1/scrape/batchN creditsScrape up to 1,000 profiles
GET/api/v1/scrape/{id}FreeCheck result by ID
GET/api/v1/scrape?linkedin_url=...FreeCheck result by URL
GET/api/v1/scrape/batch/{batch_id}FreeCheck batch progress

Authentication

MethodEndpointCostDescription
POST/api/v1/auth/registerFreeCreate account
POST/api/v1/auth/verifyFreeVerify email
POST/api/v1/auth/api-keyFreeGenerate API key

Account & Credits

MethodEndpointCostDescription
GET/api/v1/accountFreeView balance and usage
GET/api/v1/credits/packsFreeList credit packs
POST/api/v1/credits/purchaseFreeBuy credits via Stripe

Full API reference: llms-full.txt · OpenAPI spec · Interactive docs

For AI Agents

This site is designed for machine consumption. AI agents can discover and integrate with this API using these files: