Skip to main content
GET
/
v1
/
daily
/
{ticker}
/
Daily Transaction Data
curl --request GET \
  --url https://api.sectors.app/v1/daily/{ticker}/ \
  --header 'Authorization: <authorization>'
[
    {
        "symbol": "GOTO.JK",
        "date": "2024-05-21",
        "close": 0,
        "volume": 0,
        "market_cap": 0
    }
]
[
    {
        "symbol": "GOTO.JK",
        "date": "2024-05-21",
        "close": 0,
        "volume": 0,
        "market_cap": 0
    }
]
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 daily transaction data is to be retrieved.
Get the available ticker from the Companies by Subsector or the Companies by Subindustry endpoints.
ASII, BBCA, BBRI, BMRI, BYAN
A valid ticker consists of 4 letters, optionally followed by ‘.jk’, and is case-insensitive.

Query Parameters

start
string
Start date for which the daily transaction data of a given ticker is to be retrieved.
The API endpoint only accepts start date in the YYYY-MM-DD format.
The start date must be no earlier than 90 days before the end date. If a date earlier than this is provided, only the most recent 90 days of data will be retrieved.
When only end date is provided, the default value of start date is 30 days before the end date.When start and end dates are not provided, the default value of start date is 30 days before today.
end
string
End date for which the daily transaction data of a given ticker is to be retrieved.
The API endpoint only accepts end date in the YYYY-MM-DD format.
The end date must be no later than 90 days after the start date. If a date later than this is provided, only the most recent 90 days of data will be retrieved.
When only start date is provided, the default value of end date is 30 days after the start date.When start and end dates are not provided, the default value of end date is today.

Response

payload
DailyTransactionData[]