Skip to Main Content
Money Bells API Hub v1.0

Institutional API Infrastructure Portal

Deploy real-time REST quantitative feeds and algorithmic webhook signals directly into your brokerage back-ends, execution terminals, or white-labeled client ecosystems.

Credential Manager

Bearer Token Key
mb_live_6f8b9e02c5ad4178b056ea02e88a0112
Caution: Rotates globally

Credit Ledger

Standard Tier
1000/ 1,000 Credits left

Live API Console Sandbox

Connected
System ready. Key authorized: mb_live_6f8b9e02...
Standard Cost: 10 Credits / Inbound API pingRate Limit: 60 RPM (Request Per Min)

Dynamic SDK Documentation

1. Authentication

Pass your bearer credential token string inside the standard HTTP `Authorization` request header on every signal fetch call.

2. Get Active Stock Target Details

Retrieves quantitative score indicators, stop loss, and resistance parameters for any NSE/BSE stock symbol ticker.

GEThttps://api.moneybells.in/v1/signals/:symbol

3. Parameter Dictionary

FieldTypeExplanation
ai_scoreintegerQuantitative scoring scale from 0 to 100.
verdictstringBuy, Hold or Sell advisory verdict.
stop_lossfloatRequired regulatory protective threshold price.
Inbound Request Snippet
curl -X GET "https://api.moneybells.in/v1/signals/RELIANCE" \
  -H "Authorization: Bearer mb_live_6f8b9e02c5ad4178b056ea02e88a0112" \
  -H "Content-Type: application/json"
Standard Response Body (200 OK)
{
  "status": "success",
  "symbol": "RELIANCE",
  "timestamp": "2026-05-24T02:00:00Z",
  "signal": {
    "verdict": "BUY",
    "ai_score": 94,
    "entry_range": "2900 - 2920",
    "target_1": 3040,
    "target_2": 3150,
    "stop_loss": 2820,
    "technical_verdict": "EMA-50 crossover completed."
  }
}