DocsFinance
GEThttps://aplicious.com/api/v1/finance/stock/quote

Fetch a real-time stock quote for any listed symbol. Returns price, change, volume, market cap, 52-week range, and more.

Requires X-API-Key header — format: lapi_live_...

Query Parameters

NameTypeRequiredDescription
symbolstringRequiredStock ticker symbol (e.g. AAPL, TSLA, INFY.NS)
e.g. AAPL

Example Response

200 OKapplication/json
{
"success": true,
"data": {
"symbol": "AAPL",
"name": "Apple Inc.",
"exchange": "NasdaqGS",
"currency": "USD",
"price": 294.3,
"previous_close": 297.01,
"change": -2.71,
"change_pct": -0.9124,
"day_high": 301.64,
"day_low": 294.212,
"week_52_high": 317.4,
"week_52_low": 199.26,
"volume": 51882421,
"market_time": "2026-06-23T20:00:01.000Z",
"source": "Yahoo Finance"
}
}

Code Examples

curl -X GET "https://aplicious.com/api/v1/finance/stock/quote?symbol=AAPL" \
  -H "X-API-Key: lapi_live_your_key_here" \
  -H "Accept: application/json"