Find Phone by LinkedIn
Find Phone by LinkedIn
Enriches a LinkedIn profile URL to find the associated phone number. This enrichment also returns bonus data including job title and gender when available.
[!NOTE]
See the API Guide for the shared request lifecycle (sync, async polling, async webhook), error envelope, rate limits, custom_vars, and deduplication. This page documents only the fields and behaviour unique to this endpoint.
Try it
Pricing
Endpoint
Examples
Output Fields
Processing Time
This enrichment typically completes within 10-30 seconds. For time-sensitive integrations, consider using async mode with a callback URL.
Integration Tips
-
Handle null phones gracefully: Not all LinkedIn profiles have associated phone numbers. Design your workflow to handle null values.
-
Use async mode for bulk processing: When enriching multiple profiles, use async mode with callbacks to avoid timeout issues.
-
Leverage custom_vars: Include your internal identifiers in custom_vars so webhook callbacks can be processed without additional database lookups:
curl -X POST https://api.skael.de/api/enrichments/find_phone_linkedin \
-H "Authorization: Bearer eak_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"linkedin_url": "https://linkedin.com/in/johndoe",
"async": true,
"callback_url": "https://yourapp.com/webhooks/phone",
"custom_vars": {
"lead_id": "abc123",
"campaign": "outbound-q1"
}
}'