Run in Apidog
Search for contacts based on the provided search parameters and returns contact summary objects. Credit Note: Searches do not consume credits. Credits are only used if you subsequently retrieve deep data for a contact that has not been accessed within the last 12 months.
Request Add parameter in header X-Api-Key
Example: X-Api-Key: ********************
or
Body Params application/json Required
Simple search for contacts by name
{
"search_terms" : [
"John Smith"
]
} Request Code Samples
curl --location --globoff 'https://api.leadfeeder.com/v1/contacts/search?account_id=123456&page[cursor]=WyAzNzAwMCwgIjIzNTYyMCJd&page[size]=20' \
--header 'X-Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"search_terms": [
"John Smith"
]
}' Responses
{
"data" : [
{
"type" : "contact_summary" ,
"id" : "435834" ,
"attributes" : {
"full_name" : "John Doe" ,
"gender" : "male" ,
"hierarchy_level" : "employees" ,
"meta" : {
"has_phones" : true ,
"has_mail" : true ,
"has_social_accounts" : true
}
} ,
"relationships" : {
"company" : {
"id" : "129011" ,
"type" : "company_summary"
}
}
}
] ,
"meta" : {
"credits" : {
"charged" : 0
} ,
"pagination" : {
"next_cursor" : "dXNlcjpVMEc5V0ZYTlo" ,
"total_count" : 1450
} ,
"request_id" : "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}
Modified at 2026-05-22 11:02:07