Get stock quote
GET
/api/v1/public/companies/:ticker/quote1 credit / callAPI key required
Get real-time stock quote for a company.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/companies/AAPL/quote' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/companies/AAPL/quoteexample · 200
{
"data": {
"ticker": "AAPL",
"currentPrice": 295.22,
"change": -1.2,
"changePercent": -0.40483,
"high": 295.42,
"low": 294.37,
"yearHigh": 317.4,
"yearLow": 195.07,
"open": 295.245,
"previousClose": 296.42,
"timestamp": 1781616652,
"fetchedAt": "2026-06-16T13:30:53.212Z",
"preMarketPrice": null,
"preMarketChangePercent": null,
"afterHoursPrice": null,
"afterHoursChangePercent": null,
"volume": 832102,
"marketCap": 4336001238320
}
}