GET
/
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.

Query Parameters

start
string
Start date for which the daily transaction data of a given ticker is to be retrieved.
end
string
End date for which the daily transaction data of a given ticker is to be retrieved.

Response

payload
DailyTransactionData[]