Explainable by design
Return the score, confidence, component breakdown and the factors behind it—not just a black-box number.
Give your customers explainable market intelligence without building a research stack from scratch. Capulse APIs bring i-Score, F&O signals, portfolio analysis and behavioural insight into the products you already own.
$ curl https://api.capulse.tech/api/partner/v1/iscore/RELIANCE \ -H "Authorization: Bearer cp_live_..." { "success": true, "symbol": "RELIANCE", "result": { "iscore": 72.4, "recommendation": "BUY", "confidence": 0.81, "score_factors": [...] } }
Capulse handles the market data, calculations, scoring and explanation. You get clean JSON that fits into a broker app, wealth console, PMS workflow, research terminal or investor experience.
Return the score, confidence, component breakdown and the factors behind it—not just a black-box number.
Connect to NSE/BSE equities, NIFTY family indices, mutual funds and supported market context through one contract.
Use synchronous lookups for product screens and subscriptions plus webhooks for ongoing signal delivery.
Sign in to your approved partner workspace, copy a sandbox key, make one authenticated request, and map the response into your own UI. The API is versioned and returns JSON throughout.
curl https://api.capulse.tech/api/partner/v1/iscore/RELIANCE \ -H "Authorization: Bearer cp_live_YOUR_KEY"
{ "success": true, "symbol": "RELIANCE", "result": { "iscore": 72.4, "recommendation": "BUY" } }
import requests response = requests.get( "https://api.capulse.tech/api/partner/v1/iscore/RELIANCE", headers={"Authorization": "Bearer cp_live_YOUR_KEY"} ) score = response.json()["result"]["iscore"]
const response = await fetch( "https://api.capulse.tech/api/partner/v1/iscore/RELIANCE", { headers: { Authorization: `Bearer ${CAPULSE_KEY}` } } ); const { result } = await response.json();
import crypto from "node:crypto"; const expected = `sha256=${crypto .createHmac("sha256", secret) .update(rawBody).digest("hex")}`; const valid = crypto.timingSafeEqual( Buffer.from(expected), Buffer.from(signature) );
Whether you serve retail investors or professional desks, Capulse gives your team a decision layer that can be branded, embedded and governed by your own product.
Enrich watchlists, quote pages and client dashboards with explainable stock scores and live F&O context.
Surface portfolio-level research, holding context and risk signals inside advisor and client experiences.
Accelerate repeatable research workflows with component evidence, confidence and structured outputs for review.
Teach users how market signals work with transparent breakdowns instead of unsupported buy or sell claims.
Ship a differentiated intelligence feature without hiring a full market data, quant and research operations team.
Standardise daily checks, alerts and market snapshots across teams with a single partner contract.
All partner endpoints use the versioned base URL below and return a consistent success flag, payload and error code. Use the existing detailed reference for full schemas.
https://api.capulse.tech/api/partner/v1asset_type.Send the partner key in the Authorization header. Keep it server-side and never expose it in browser code.
Authorization: Bearer cp_live_YOUR_KEYFor ongoing F&O and i-Score changes, create a subscription and provide your webhook URL during partner onboarding. Capulse delivers the event payload with an HMAC signature so your server can verify its origin before processing.
iscore or fno./alerts.{ "engine": "iscore", "symbol": "RELIANCE", "min_confidence": 60, "channels": ["webhook"] }
The fastest route to a useful integration is to make intelligence feel native. Here is a compact reference screen for a broker, PMS or wealth product—your brand, your navigation, Capulse research underneath.
Strong fundamentals and improving trend. View the evidence behind this score before making a decision.
Use the score card in a watchlist, an advisor workspace, a client report or a pre-trade review.
View integration pattern →Tell us what you are building—broker, PMS, RA/IA, wealth app or internal desk—and we’ll help scope the right endpoints, limits and rollout.