GET https://api.marketstack.com/v1/splits?symbols=AAPL
Using the splits
endpoint you will be able to look up information about the stock splits factor for different symbols.
Body
PARAM
Key | Datatype | Required | Description |
symbols
|
string | [Required] Specify one or multiple comma-separated stock symbols (tickers) for your request, e.g. AAPL or AAPL, MSFT. Each symbol consumes one API request. Maximum: 100 symbols. |
HEADERS
Key | Datatype | Required | Description |
RESPONSES
status OK
{
"pagination": {
"limit": 100,
"offset": 0,
"count": 5,
"total": 5
},
"data": [
{
"date": "2020-08-31",
"split_factor": 4,
"symbol": "AAPL"
},
{
"date": "2014-06-09",
"split_factor": 7,
"symbol": "AAPL"
},
{
"date": "2005-02-28",
"split_factor": 2,
"symbol": "AAPL"
},
{
"date": "2000-06-21",
"split_factor": 2,
"symbol": "AAPL"
},
{
"date": "1987-06-16",
"split_factor": 2,
"symbol": "AAPL"
}
]
} |
ENDPOINTS