# n8n workflow templates - Veezee

## 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](/integrations/n8n/enrich-signup-company.json): send a webhook with `{ "email": "...", "company_domain": "..." }` and get back the company's name, industry, employee count, and website. `company_domain` is 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](/integrations/n8n/research-lead-before-call.json): 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](/integrations/n8n/veezee-prospect-enrich.json): 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

1. Download a workflow JSON above.
2. In n8n, open Workflows > Import from File (or paste the JSON from the clipboard).
3. Open each HTTP Request node and assign the "Veezee API" credential (below).
4. Webhook workflows: activate to get the production webhook URL. The prospect workflow just runs with Execute Workflow.

## Credential setup (once, reused by all three)

1. In n8n: Credentials > New > Header Auth.
2. Name it exactly `Veezee API`.
3. Header name `Authorization`, header value `Bearer <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](/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](/pricing).
