curl --request GET \
--url https://api.example.com/v1/contacts{
"data": {
"contacts": [
{
"id": "<string>",
"full_name": "<string>",
"email": "<string>",
"phone": "<string>",
"job_title": "<string>",
"company_name": "<string>",
"linkedin_url": "<string>",
"created_at": "<string>",
"updated_date": "<string>"
}
]
},
"meta": {
"page": 123,
"per_page": 123,
"total": 123
},
"error": {
"code": "<string>",
"message": "<string>"
}
}Retrieve a paginated list of contacts in your workspace
curl --request GET \
--url https://api.example.com/v1/contacts{
"data": {
"contacts": [
{
"id": "<string>",
"full_name": "<string>",
"email": "<string>",
"phone": "<string>",
"job_title": "<string>",
"company_name": "<string>",
"linkedin_url": "<string>",
"created_at": "<string>",
"updated_date": "<string>"
}
]
},
"meta": {
"page": 123,
"per_page": 123,
"total": 123
},
"error": {
"code": "<string>",
"message": "<string>"
}
}created_at, updated_date, full_name- for descending order (e.g., -created_at)Authorization: Bearer wbk_your_api_key_here
Show properties
Show Contact object
curl https://data.leadlex.com/functions/v1/api-gateway/v1/contacts \
-H "Authorization: Bearer wbk_your_api_key_here"
{
"data": {
"contacts": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"full_name": "Jane Doe",
"email": "jane@example.com",
"phone": "+1234567890",
"job_title": "General Counsel",
"company_name": "Acme Legal",
"linkedin_url": "https://linkedin.com/in/janedoe",
"created_at": "2026-02-24T10:00:00Z",
"updated_date": "2026-02-24T10:00:00Z"
}
]
},
"meta": {
"page": 1,
"per_page": 50,
"total": 235
}
}
curl "https://data.leadlex.com/functions/v1/api-gateway/v1/contacts?search=jane" \
-H "Authorization: Bearer wbk_your_api_key_here"
curl "https://data.leadlex.com/functions/v1/api-gateway/v1/contacts?list_id=abc-123" \
-H "Authorization: Bearer wbk_your_api_key_here"
curl "https://data.leadlex.com/functions/v1/api-gateway/v1/contacts?sort=full_name" \
-H "Authorization: Bearer wbk_your_api_key_here"
| Status | Code | Description |
|---|---|---|
| 401 | invalid_key | Invalid or expired API key |
| 403 | insufficient_permissions | Missing read permission |
| 429 | rate_limited | Rate limit exceeded |