Skip to main content
GET
/
v2
/
company
/
get_quarterly_financial_dates
/
{ticker}
Quarterly Financial Dates
curl --request GET \
  --url https://api.sectors.app/v2/company/get_quarterly_financial_dates/{ticker}/ \
  --header 'Authorization: <api-key>'
{
  "2023": [
    [
      "2023-03-31",
      "q1"
    ],
    [
      "2023-06-30",
      "q2"
    ],
    [
      "2023-09-30",
      "q3"
    ],
    [
      "2023-12-31",
      "q4"
    ]
  ],
  "2024": [
    [
      "2024-03-31",
      "q1"
    ],
    [
      "2024-06-30",
      "q2"
    ],
    [
      "2024-09-30",
      "q3"
    ],
    [
      "2024-12-31",
      "q4"
    ]
  ]
}

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. ASII, BBCA.

Response

Dictionary keyed by financial year, each containing available report dates and quarter labels.

{key}
any