primusfabrum-leadgen-api - PrimusFabrum API suite
  • TypeScript 95.7%
  • JavaScript 4.3%
Find a file
2026-06-09 05:00:15 +02:00
src [leadgen-api-dev] Build out Lead Gen API with scoring and filtering 2026-06-09 05:00:15 +02:00
.gitignore feat: initial scaffold with Fastify + TypeScript 2026-06-09 03:32:15 +02:00
AGENTS.md feat: initial scaffold with Fastify + TypeScript 2026-06-09 03:32:15 +02:00
ecosystem.config.cjs feat: initial scaffold with Fastify + TypeScript 2026-06-09 03:32:15 +02:00
package-lock.json feat: initial scaffold with Fastify + TypeScript 2026-06-09 03:32:15 +02:00
package.json [leadgen-api-dev] Build out Lead Gen API with scoring and filtering 2026-06-09 04:51:32 +02:00
README.md feat: initial scaffold with Fastify + TypeScript 2026-06-09 03:32:15 +02:00
tsconfig.json chore: fix tsconfig for CommonJS output 2026-06-09 03:34:19 +02:00

PrimusFabrum Lead Gen API

Fastify-based lead generation and management API.

Port: 3003 Stack: Fastify + TypeScript + in-memory store

Endpoints

  • POST /v1/leads — Capture new lead
  • GET /v1/leads — List leads (filterable by status/source)
  • GET /v1/leads/:id — Get lead detail
  • PATCH /v1/leads/:id — Update lead (status, score, notes)
  • GET /v1/health — Health check

Pricing

  • Free: 100 leads/month
  • Pro ($19.99/mo): 10,000 leads/month, CSV export
  • Enterprise ($99.99/mo): Unlimited, API key rotation, webhooks

Dev

npm install
npm run dev
npm run build