Thanks for helping build the best API catalog for AI agent builders.
- Fork this repo and clone it locally
- Open
lib/api-database.json - Find the right category (or subcategory) for your API
- Add an entry following this format:
{
"n": "API Name",
"u": "https://docs.example.com",
"d": "What this API does in plain English. Under 140 characters.",
"f": true
}Rules for descriptions:
- Write like you're explaining it to a smart 15-year-old
- No jargon (say "turns speech into text" not "ASR with diarization")
- Under 140 characters
- Start with what it does, not what it is
Rules for the f (free) field:
trueif there's any free tier, free trial, or it's open sourcefalseif it's purely paid with no free option
- Open a PR with the title:
Add: [API Name]
Same process as above. Find the entry, improve it, open a PR.
Open an issue titled Dead: [API Name] with:
- The API name
- What's wrong (URL 404, service discontinued, etc.)
Open an issue titled Category: [Proposed Name] with:
- Why the existing categories don't cover it
- At least 3 APIs that would belong in it
git clone https://github.com/stackwyre/agentstack.git
cd agentstack
npm install
npm run devThe site runs at localhost:3000. The builder is at /builder.
- We use Next.js App Router
- Styling is inline styles + Tailwind utilities
- No external state management — React hooks only
- Keep it simple. This project's power is in the data, not the framework.
Open an issue. We're friendly.