GET
/
api
/
enrich
/
contacts
Get Contact Information
curl --request GET \
  --url https://search.clado.ai/api/enrich/contacts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "emails": [
        {
          "email": "[email protected]",
          "type": "work",
          "confidence": 0.95
        }
      ],
      "phones": [
        {
          "number": "+1-555-123-4567",
          "type": "mobile",
          "confidence": 0.92
        }
      ]
    }
  ]
}
Retrieve contact information (emails and phone numbers) for a LinkedIn profile. This endpoint searches multiple data sources to find the most up-to-date contact details.

Get Contact Information

curl -X GET "https://search.clado.ai/api/enrich/contacts?linkedin_url=https://www.linkedin.com/in/alexjohnson" \
  -H "Authorization: Bearer YOUR_API_KEY"

Query Parameters

ParameterTypeRequiredDescription
linkedin_urlstringYesLinkedIn profile URL to enrich

Examples

Get Contact Info:
curl -X GET "https://search.clado.ai/api/enrich/contacts?linkedin_url=https://www.linkedin.com/in/alexjohnson" \
  -H "Authorization: Bearer YOUR_API_KEY"

Error Responses

Status CodeDescription
400Bad Request - Missing or invalid LinkedIn URL
401Unauthorized - API key missing or invalid
402Payment Required - Insufficient credits or requires paid plan
500Internal Server Error - Enrichment service error

Notes

  • Costs 4 credits per request (regardless of results found)
  • Rate limited to 5 requests per minute per API key
  • Requires purchased credits (not available on free trial)
  • Results may come from cache for faster response
  • Confidence scores range from 0.0 to 1.0 (higher is better)
  • Multiple email addresses may be returned with different confidence levels

Authorizations

Authorization
string
header
required

API key authentication. Keys start with 'lk_'.

Query Parameters

linkedin_url
string
required

LinkedIn profile URL to get contact information for (e.g., 'https://www.linkedin.com/in/username')

Response

200 - application/json

Contact info retrieved

The response is of type object.