Full-stack/finance

Build a personal finance dashboard — stocks, SIP calculator, and live market data

A personal finance dashboard that shows portfolio value, SIP projections, live stock quotes, and sector performance used to require 3–4 separate API subscriptions. With APlicious, the /finance namespace covers all 31 endpoints under one key.

Get free API key Full docs
01

Stock quote widget

Fetch a real-time quote for any NYSE, NASDAQ, NSE, or BSE symbol:

const res = await fetch(
  'https://aplicious.com/api/v1/finance/stock/quote?symbol=RELIANCE.NS',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
const { data } = await res.json();
// { symbol, price, change, change_pct, volume, market_cap,
//   week_52_high, week_52_low }
02

SIP projection chart

Calculate how a monthly SIP grows over time — returns year-by-year breakdown for charting:

const res = await fetch(
  'https://aplicious.com/api/v1/finance/sip' +
  '?monthly_investment=10000&annual_rate=12&years=20',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
const { data } = await res.json();
// { future_value, total_invested, total_gains,
//   wealth_ratio, yearly_breakdown: [] }
03

Sector performance heatmap

Show which market sectors are leading and lagging today — powered by SPDR ETF live prices:

const res = await fetch(
  'https://aplicious.com/api/v1/finance/sector-performance',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
const { data } = await res.json();
// { sectors: [{ sector, change_pct_1d, price }],
//   leaders: [...], laggards: [...] }
04

ETF deep-dive panel

Show fund details, top holdings, and live price for any of 16 major ETFs:

const res = await fetch(
  'https://aplicious.com/api/v1/finance/etf-info?symbol=QQQ',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
// { name, profile: { fund_family, expense_ratio_pct, index_tracked },
//   market_data: { price, change_pct_1d, week_52_high },
//   top_holdings: [{ symbol, name, weight_pct }] }
05

Bond yield strip (bonus)

Add a government bond yield strip for US, IN, UK, or DE — useful for fixed-income investors:

const res = await fetch(
  'https://aplicious.com/api/v1/finance/bond-yield?country=US',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
// { country: "US", yields: [{ tenor: "10Y", yield_pct: 4.37 }] }

Why APlicious?

The /finance namespace has 31 endpoints — stocks, crypto, forex, options Greeks, portfolio optimiser, DCF valuation, and more. As your dashboard grows you add features without adding API accounts.

Ready to build?

Free tier · 250 calls/month · No credit card · All 10 APIs included

Get your free API key

More guides

Build a Remote Job Board with the APlicious Jobs API

Read guide

Build a Wellness App — Biorhythm, Fasting & Sleep Tracking API

Read guide

Build a Property Calculator with the APlicious Property API

Read guide