Skip to main content
GET
/
v2
/
listing-performance
/
{ticker}
Company IPO & Listing Performance
curl --request GET \
  --url https://api.sectors.app/v2/listing-performance/{ticker}/ \
  --header 'Authorization: <api-key>'
{
  "symbol": "GOTO.JK",
  "chg_7d": -0.0104712,
  "chg_30d": -0.418848,
  "chg_90d": -0.115183,
  "chg_365d": -0.740838
}

Authorizations

Authorization
string
header
required

API key passed directly in the Authorization header (without Bearer prefix).

Path Parameters

ticker
string
required

IDX ticker symbol. E.g. ARTO, BREN, GOTO.

Response

Price change percentages since listing across multiple time windows.

symbol
string
required

Ticker symbol.

chg_7d
number<double> | null
required

Price change since listing at 7 days.

chg_30d
number<double> | null
required

Price change since listing at 30 days.

chg_90d
number<double> | null
required

Price change since listing at 90 days.

chg_365d
number<double> | null
required

Price change since listing at 365 days.