npm install @forthebots/bazaar-sdk
Or use the REST API directly — no SDK required.
curl -X POST https://noui.bot/api/bazaar/register-consumer \
-H "Content-Type: application/json" \
-d '{"name": "My Agent", "email": "you@example.com"}'Free tier: 100 calls/month. No credit card required.
Or register with the web formcurl https://noui.bot/api/bazaar/catalog | jq '.tools'
Or browse the provider catalog in your browser.
import { Bazaar } from "@forthebots/bazaar-sdk";
const bz = new Bazaar({ apiKey: "bz_your_key" });
const result = await bz.tools.call("web_search", {
query: "latest MCP protocol updates"
});
console.log(result);curl -X POST https://noui.bot/api/bazaar/proxy \
-H "Authorization: Bearer bz_your_key" \
-H "Content-Type: application/json" \
-d '{"tool_name": "web_search", "input": {"query": "MCP protocol"}}'const usage = await bz.usage.summary(); console.log(usage.total_calls, usage.total_cost);
Or view your dashboard.
Built by Tombstone Dash LLC · San Diego, CA