Build lead lists from LinkedIn
You describe who you sell to; your agent searches LinkedIn and builds a ranked lead list: who to contact, why they fit, and what to open with. The recipe below runs in Claude, n8n, or your own code on Veezee's LinkedIn tools.
Recipe#
- Try a handful of prospects free: mint a key (
POST /v1/keys/mint, no body) under a shared budget of 200 credits per IP per day. A real list with enrichment per prospect needs more; buy a key at /upgrade, checkout credits the same key. linkedin_search_people: turn your buyer description into filters (title,keywords,current_company,past_company,school),limit: 30. One larger call beats several small pages. Cost: 12 credits.linkedin_get_profile: enrich the top 10 withsections: ["experience", "about"]; the first two sections are included in the base price. Cost: 40 credits for 10.linkedin_get_company: firmographic context per distinct company (industry, size, what they do), the raw material for a specific hook. Cost: 4 credits per company.linkedin_get_postson the strongest prospects: one page each is usually enough to spot a recent topic worth referencing in an opener. Cost: 4 credits per prospect.
Every opener line must trace to data a call actually returned: a post topic, a role change, a company fact. No returned hook means "no recent hook found", not an invented one.
Total cost#
104 credits for one search at limit 30, 10 profile enrichments, 8 company lookups, and 5 post pulls.
Limits worth knowing#
- No contact details: Veezee returns LinkedIn profile data, not emails or phone numbers, and sends nothing on your behalf.
- Skip
is_anonymous: trueresults; a private profile cannot be enriched. Count it as "match found, profile private" if list size matters. - A third or fourth profile section adds 2 credits per section per call; on a long list that multiplies fast.
- A past_company name or company-URL filter caps the search limit;
current_companynames work at any limit. For exact company filtering pass the numeric id fromlinkedin_get_company.
Run it#
Full reference: /docs. Hiring version of this recipe: /use-cases/candidate-sourcing.
Installable skill: the outreach-list-builder pack teaches your agent this whole job. Install every pack with npx skills add veezeehq/veezee-skills (/docs/skills).