@krystalballz/openclaw-funding-search
v0.3.0
Published
OpenClaw plugin for searching startup funding data from the KrystalBallz database
Maintainers
Readme
OpenClaw Funding Search Plugin
Search the KrystalBallz startup funding database for companies, investors, and funding rounds. Gives OpenClaw agents quick access to funding news, round data, and investor activity.
Installation
openclaw plugins install @krystalballz/openclaw-funding-searchAlternative Installation
Clone or symlink into your local extensions directory:
git clone https://github.com/msylvester/openclaw-funding-search ~/.openclaw/extensions/funding-search
cd ~/.openclaw/extensions/funding-search
npm install --omit=devConfiguration
Add an optional apiKey in your openclaw.json plugin config (reserved for future authenticated access):
{
"plugins": {
"funding-search": {
"apiKey": "your-api-key"
}
}
}Usage
After installation the funding_search tool is automatically available to all agents. No additional setup is needed.
Parameters
| Parameter | Type | Description |
| ------------ | ------ | ------------------------------------------------------------- |
| query | string | Text search across company names, descriptions, investors |
| sector | string | Filter by sector (e.g. "AI", "healthcare") |
| series | string | Filter by round type (e.g. "Seed", "Series A") |
| investor | string | Filter by investor name (partial match) |
| start_date | string | Start of date range, inclusive (YYYY-MM-DD) |
| end_date | string | End of date range, inclusive (YYYY-MM-DD) |
| days | number | Lookback window in days from today (alternative to date range) |
| limit | number | Max results (default 10, max 50) |
At least one parameter is required.
Example Output
[
{
"company_name": "Waabi",
"funding_amount": "$750M",
"series": "Series C",
"sector": "Autonomous Vehicles",
"investors": "Khosla Ventures, Uber",
"date": "2026-02-02",
"source": "TechStartups",
"description": "Waabi, an autonomous driving technology company..."
}
]Development
pnpm build # compile TypeScript
pnpm test # run testsLicense
MIT
