Apollo-style business lead generation dashboard
No active jobs
No results yet. Start a scraping job to see results here.
No proxies added yet.
Adjust the stealth level to balance speed and anti-detection.
Optimized (Faster): Enabled
Start a new scraping job.
Parameters:
Curl Examples:
# Basic request
curl -X POST http://localhost:3001/api/scrape \
-H "Content-Type: application/json" \
-d '{
"searchTerm": "restaurants",
"location": "New York",
"maxResults": 50,
"batchSize": 3,
"stealthLevel": "optimized"
}'
# With proxy
curl -X POST http://localhost:3001/api/scrape \
-H "Content-Type: application/json" \
-d '{
"searchTerm": "coffee shops",
"location": "Los Angeles",
"maxResults": 25,
"proxy": "http://username:password@proxy.example.com:8080"
}'
# With API key
curl -X POST http://localhost:3001/api/scrape \
-H "Content-Type: application/json" \
-H "x-api-key: your-api-key-here" \
-d '{
"searchTerm": "restaurants",
"location": "Chicago"
}'
Get a list of all scraping jobs.
Curl Examples:
# Basic request curl -X GET http://localhost:3001/api/jobs # With API key curl -X GET http://localhost:3001/api/jobs \ -H "x-api-key: your-api-key-here"
Get the results of a specific scraping job by its ID.
Parameters:
Curl Examples:
# Basic request curl -X GET http://localhost:3001/api/jobs/123/results # With API key curl -X GET http://localhost:3001/api/jobs/123/results \ -H "x-api-key: your-api-key-here"
Download job results as CSV file.
Parameters:
Curl Examples:
# Download to file curl -X GET http://localhost:3001/api/jobs/123/download/csv \ -o job_123_results.csv # With API key curl -X GET http://localhost:3001/api/jobs/123/download/csv \ -H "x-api-key: your-api-key-here" \ -o job_123_results.csv