GET
/
listing-performance
/
{ticker}
/
Company's Performance since IPO
curl --request GET \
  --url https://api.sectors.app/v1/listing-performance/{ticker}/ \
  --header 'Authorization: <authorization>'
{
  "symbol": "GOTO.JK",
  "chg_7d": -0.0104712,
  "chg_30d": -0.418848,
  "chg_90d": -0.115183,
  "chg_365d": -0.740838
}
{
  "symbol": "GOTO.JK",
  "chg_7d": -0.0104712,
  "chg_30d": -0.418848,
  "chg_90d": -0.115183,
  "chg_365d": -0.740838
}

Notes

Listing performance data is accessible only for tickers listed after May 2005.
Authorization
string
required
Authorization header that should be filled with your Sectors Financial API key.

Path

ticker
string
required
Ticker of the company for which the percentage gain since listing date is to be retrieved.

Response

symbol
string
The ticker of the listed performance data.
chg_7d
float
The price change in the last 7 days.
chg_30d
float
The price change in the last 30 days.
chg_90d
float
The price change in the last 90 days.
chg_365d
float
The price change in the last 365 days.