Tools
Funding Search
OpenClaw plugin for searching startup funding data from the KrystalBallz database
Install
npm install --omit=dev
Configuration Example
{
"plugins": {
"funding-search": {
"apiKey": "your-api-key"
}
}
}
README
# OpenClaw Funding Search Plugin
Search the [KrystalBallz](https://kbz-chron.fly.dev) startup funding database for companies, investors, and funding rounds. Gives OpenClaw agents quick access to funding news, round data, and investor activity.
## Installation
```bash
openclaw plugins install @krystalballz/openclaw-funding-search
```
### Alternative Installation
Clone or symlink into your local extensions directory:
```bash
git clone https://github.com/msylvester/openclaw-funding-search ~/.openclaw/extensions/funding-search
cd ~/.openclaw/extensions/funding-search
npm install --omit=dev
```
## Configuration
Add an optional `apiKey` in your `openclaw.json` plugin config (reserved for future authenticated access):
```json
{
"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
```json
[
{
"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
```bash
pnpm build # compile TypeScript
pnpm test # run tests
```
## License
MIT
tools
Comments
Sign in to leave a comment