Search the GetLeads contact index. Costs one credit per record returned. Paginate with offset until has_more is false.
643 matches
12 actions
GetLeads
12 actions
- Count contactsPOSTv1.0.0
- Enrich from emailPOSTv1.0.0
- Enrich from LinkedInPOSTv1.0.0
- Enrich from personPOSTv1.0.0
- Export contactsPOSTv1.0.0
- Get export statusGETv1.0.0
- Get fair-use usageGETv1.0.0
- Get filter valuesGETv1.0.0
- Lookup colleaguesPOSTv1.0.0
- Lookup decision makersPOSTv1.0.0
- Lookup phoneGETv1.0.0
- Search contactsPOSTv1.0.0
CRM/GetLeads
Search contacts
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
{
"type": "object",
"additionalProperties": false,
"properties": {
"filters": {
"type": "object",
"description": "AND-combined search filters (domains, seniority, job_titles, countries, email_status, and others).",
"additionalProperties": true
},
"limit": {
"type": "integer",
"description": "Page size (default 1000, max 50000)."
},
"offset": {
"type": "integer"
},
"max_per_company": {
"type": "integer",
"description": "Cap contacts per company (1–50)."
},
"columns": {
"type": "array",
"description": "Output columns by display label or internal name.",
"items": {
"type": "string"
}
}
}
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
{
"type": "object",
"additionalProperties": true,
"properties": {
"ok": {
"type": "boolean"
},
"has_more": {
"type": "boolean"
},
"next_offset": {
"type": "integer"
},
"total_available": {
"type": "integer"
}
}
}