People Finder (Skiptrace)
Find comprehensive contact information and addresses from names, phones, emails, or addresses
$0.02 per result
POST /api/v1/scrape/skip-traceParameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string[] | Optional | Names to searchExample: ["Braxton Smith", "John Smith; Dallas, TX"] |
email | string[] | Optional | Email addresses to searchExample: ["[email protected]"] |
phone_number | string[] | Optional | Phone numbers to searchExample: ["(214) 349-3972"] |
street_citystatezip | string[] | Optional | Addresses to searchExample: ["3828 Double Oak Ln; Irving, TX 75061"] |
max_results | number | Optional | Max results per searchDefault: 1Example: 3 |
Examples
Search by name
curl -X POST https://app.scrapercity.com/api/v1/scrape/skip-trace \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": ["Mary Simmons", "John Smith"],
"max_results": 1
}'Use Cases
- •Lead enrichment and verification
- •Finding contact information for prospects
- •Locating individuals for legal or business purposes
- •Reverse phone/email lookups
- •Address verification
Best Practices
- •At least one search input required
- •Combine name with location for better accuracy
- •Returns comprehensive data including relatives and associates
- •Multiple data sources for verification
- •Results include phone types and carriers
Every scrape returns a runId. Poll GET /api/v1/scrape/status/{runId} until it completes, then download via GET /api/downloads/{runId}?format=csv.
Authenticate every request with Authorization: Bearer YOUR_API_KEY. See the full API reference for authentication, rate limits and error codes.