← noui.bot

Get Started

From zero to your first metered API call in under 2 minutes.

1

Install the SDK

npm install @forthebots/bazaar-sdk

Or use the REST API directly — no SDK required.

2

Get an API key

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 form
3

Browse available tools

curl https://noui.bot/api/bazaar/catalog | jq '.tools'

Or browse the provider catalog in your browser.

4

Make your first call

TypeScript (SDK)
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
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"}}'
5

Check your usage

const usage = await bz.usage.summary();
console.log(usage.total_calls, usage.total_cost);

Or view your dashboard.

Try It Now

live terminal
$ curl https://noui.bot/api/bazaar/catalog

Next Steps

Built by Tombstone Dash LLC · San Diego, CA