n8n workflow templates
Three ready-to-import workflows#
Download, import, add one credential, done. All three call the Veezee REST API (LinkedIn people and company data) with your key.
- Enrich new signups with LinkedIn company data: send a webhook with
{ "email": "...", "company_domain": "..." }and get back the company's name, industry, employee count, and website.company_domainis optional; the workflow falls back to the email's domain. Point a signup form, CRM event, or onboarding flow at the webhook URL. - Research a lead before a sales call: send a webhook with either
{ "profile_url": "..." }or{ "name": "...", "company": "..." }. A profile URL returns that person's profile with experience; a name plus company runs a people search and returns the matches. Use it from a calendar automation to prep before every call. - Search and enrich LinkedIn prospects: no webhook needed; a good first import. Edit three values in a Set node (keywords, company, limit), click Execute Workflow, and get the top match enriched with role and experience history.
Import steps#
- Download a workflow JSON above.
- In n8n, open Workflows > Import from File (or paste the JSON from the clipboard).
- Open each HTTP Request node and assign the "Veezee API" credential (below).
- Webhook workflows: activate to get the production webhook URL. The prospect workflow just runs with Execute Workflow.
Credential setup (once, reused by all three)#
- In n8n: Credentials > New > Header Auth.
- Name it exactly
Veezee API. - Header name
Authorization, header valueBearer <your key>.
No key yet? Mint one free: curl -s -X POST https://api.veezee.io/v1/keys/mint (no body) returns a key once, no signup, no card. It runs under a small shared per-IP daily budget of 200 credits. Need more? Buy a key at /upgrade: checkout credits the same key.
Credit cost per run#
- Enrich signup (company lookup): 4 credits, or 8 credits the first time a new domain is resolved.
- Research lead, profile URL path: 4 credits.
- Research lead, name + company path (people search): 10 credits.
- Search and enrich prospects (search + profile): 14 credits.
Check the balance any time with GET /v1/usage (free). Full pricing: /pricing.