Get multi-timeframe price changes
GET
/api/v1/public/companies/:ticker/price-change1 credit / callAPI key required
Get percentage price changes for a company across eleven timeframes: 1D, 5D, 1M, 3M, 6M, YTD, 1Y, 3Y, 5Y, 10Y, and MAX. Useful for a quick "how much is it up or down" answer without fetching full candle data.
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/price-change' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/companies/AAPL/price-changeexample · 200
{
"data": {
"ticker": "AAPL",
"symbol": "AAPL",
"returns": {
"1D": 1.81706,
"5D": 0.91924282,
"1M": -1.26903,
"3M": 17.24547,
"6M": 7.94217,
"YTD": 9.03406,
"1Y": 49.39018,
"3Y": 60.29634,
"5Y": 127.75259,
"10Y": 1115.33415,
"MAX": 230846.63031
}
}
}