n8n workflow templates
Two ready-to-import workflows
Download, import, add one credential, done. Both 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 the 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.
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).
- Activate the workflow to get its production webhook URL.
Credential setup (once, reused by both)
- In n8n: Credentials > New > Header Auth.
- Name it exactly
Veezee API. - Header name
Authorization, header valueBearer <your key>.
No key yet? curl -X POST https://api.veezee.io/v1/provision returns a free trial key with 500 credits, no signup, shown exactly once.
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.
Check the balance any time with GET /v1/usage (free). Full pricing: /pricing.