find_leads
Find scored, in-market B2B leads (hot-signal) for an offer + ICP. Returns a list with a fit score and a call brief, but WITHOUT contacts — call reveal_contact with a row's `ref` to get email/phone. Searching is FREE: credits are only spent on reveals.
Parameters3
| offer | string | required | What you sell, in a sentence. |
| icp | string | required | Who you sell to (industry, size, geo, role). |
| count | number | optional | How many leads (1-25, default 10). |
Raw schema
{
"type": "object",
"properties": {
"offer": {
"type": "string",
"description": "What you sell, in a sentence."
},
"icp": {
"type": "string",
"description": "Who you sell to (industry, size, geo, role)."
},
"count": {
"type": "number",
"description": "How many leads (1-25, default 10)."
}
},
"required": [
"offer",
"icp"
]
}