API & MCP
The same record the site runs on, as JSON — and as an MCP server so an agent can query it directly. Free tier with a modest rate limit; pay to lift it.
Quick start
One call to the first result
Bearer token in the header, JSON out. Every timestamp is UTC; `published_at` is always `aired_at` plus the delay window.
curl https://api.cnbcawaazlive.com/v1/cnbc/trades?status=open \
-H "Authorization: Bearer $CAL_API_KEY"{
"data": [
{
"id": "6a7df4a75f5ff18b15d2637c",
"symbol": "ULTRACEMCO",
"side": "BUY",
"entry": 11706,
"target": [17000],
"stoploss": null,
"segment": "EQUITY",
"status": "open",
"aired_at": "2026-08-13T16:44:08.000Z",
"published_at": "2026-08-13T16:49:08.000Z",
"source": { "channel": "cnbc_awaaz", "frame_url": "https://…" }
}
],
"meta": { "count": 1, "delay_seconds": 300 }
}Playground
Run a request against real calls
The server is not live yet, so the sandbox answers from the same delayed feed the site uses — the schema and the filters are the ones the API will ship with.
Try it
curl "https://api.cnbcawaazlive.com/v1/cnbc/trades?limit=3" \
-H "Authorization: Bearer $ZBL_API_KEY"Responses are built from the same delayed rows the site shows, so the schema is real even though the server is not live yet. Rate limits, keys and errors will behave as documented below.
Your account
Keys, usage and limits
What you will see once keys are issued: the key itself, where you stand against your hourly limit, and what you last called.
Your dashboard
API key
cal_live_••••••••••••••••Send it as Authorization: Bearer <key>. Keys are shown once at issuance and can be rotated any time.
This hour
37 / 60 requests · resets in 23 min
Recent requests
| 14:52 | /v1/cnbc/trades?status=open | 200 | 84 ms |
| 14:48 | /v1/cnbc/symbols/RELIANCE | 200 | 61 ms |
| 14:31 | /v1/cnbc/analytics/summary | 200 | 112 ms |
| 14:29 | /v1/cnbc/trades?limit=100 | 429 | 12 ms |
Current plan
Free
60 requests / hour
- Requests today
- 412
- History depth
- 30 days
- MCP access
- Pro and above
- Streaming
- Pro and above
Reference
Endpoints
/v1/cnbc/tradesCalls in reverse chronological order. Filter with `from`, `to`, `status`, `symbol`, `side`, `segment`./v1/cnbc/trades/{id}A single call with its full history — original wording, broadcast frame, exit price and exit reason./v1/cnbc/symbols/{symbol}Every call on one stock, plus its running hit rate and current bias./v1/cnbc/analytics/summaryPre-computed hit rate, average win and loss, risk-reward and call counts for a date range./v1/cnbc/streamServer-sent events. New calls and status changes, pushed as they clear the delay window.For agents
MCP server
Point Claude Code, Claude Desktop or any MCP client at the server and it can search calls, pull a stock's history and read the analytics summary as tools.
{
"mcpServers": {
"cnbcawaazlive": {
"url": "https://api.cnbcawaazlive.com/mcp",
"headers": { "Authorization": "Bearer CAL_API_KEY" }
}
}
}search_callsFilter by stock, side, status, date range.
get_stock_historyEvery call on one symbol with outcomes.
get_performanceHit rate and averages for a window.
Limits
How rate limiting works
Limits are per key, on a rolling hour. Every response tells you where you stand; going over returns 429 with a Retry-After header.
HTTP/1.1 200 OK
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 57
X-RateLimit-Reset: 1786240800All plans below Enterprise serve the same five-minute delayed data the website shows. Real-time access is licensed separately — it is the app's reason to exist, and redistributing it needs an agreement.
Pricing
Pay only to raise the ceiling
Every plan sees the same data. What you buy is throughput, history depth and support.
Free
₹0forever
60 requests / hour
- Full 30-day history
- All REST endpoints
- 5-minute delayed data
- Community support
Pro
Popular₹1,999per month
2,000 requests / hour
- Everything in Free
- MCP server access
- SSE streaming endpoint
- Full archive, not just 30 days
- Email support
Business
₹7,999per month
20,000 requests / hour
- Everything in Pro
- All channels, not only CNBC Awaaz
- Webhooks to your endpoint
- 99.9% uptime target
- Priority support
Enterprise
Customannual
Unmetered, by agreement
- Real-time feed, no delay
- Bulk history export
- Redistribution licensing
- Dedicated infrastructure
- SLA and named contact
Prices are indicative while the API is in private beta and exclude GST. Nothing is charged until keys are issued and you confirm a plan.