Leads, stages, notes, follow-up dates, won/lost tracking. HubSpot CRM is free but sends all your data to HubSpot. This stays on your server.
Every operation in Prospector is available through a JSON REST API. No SDK required — use curl, fetch, or any HTTP client.
GET /api/deals — list all deals with optional search and filter query parametersPOST /api/deals — create a new deal recordGET /api/deals/{id} — retrieve a single deal by IDPUT /api/deals/{id} — update an existing dealDELETE /api/deals/{id} — remove a dealGET /api/stats — aggregated statisticsGET /api/health — health check endpoint for monitoringThe moment you store deals in someone else's cloud, you have accepted their terms, their pricing changes, and their uptime. Prospector puts that decision back in your hands with a standalone binary that runs anywhere you can run a Linux process.
A freelance consultant keeps Prospector running on a home server. Client deals stay on local disk, which simplifies the privacy section of every contract. The search endpoint powers a custom dashboard built with a static site generator. Total infrastructure cost: the electricity to run a Raspberry Pi.
Point curl at /api/deals to interact with Prospector programmatically. The API follows predictable REST conventions: GET to list or fetch, POST to create, PUT to update, DELETE to remove. The response schema matches the internal data model exactly, so what you see in the dashboard is what the API returns.
GET /api/deals — List all deals. Supports ?q=keyword for searchPOST /api/deals — Create a new deal. Send JSON with at least nameGET /api/deals/{id} — Fetch one deal by IDPUT /api/deals/{id} — Update fields on an existing dealDELETE /api/deals/{id} — Remove a dealGET /api/stats — Returns total countGET /api/health — Returns {"status":"ok"} for uptime monitoringSelf-hosted sales pipeline tracker. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool prospector
PORT=9880 ./prospector
http://localhost:9880
Single binary. Embedded SQLite. No Docker. No database. No dependencies.
Your license key arrives by email within 5 minutes of checkout. Set it as an environment variable and restart the binary.
export PROSPECTOR_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./prospector
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.