Corporate Actions
Get Stock Splits for Stock
Get a list of stock splits for a specific Stock. The splits are ordered by the date they were created, with the most recent split first.
In an example 10-for-1 stock split, trading will be halted for the stock at the end of the payable_date, as the split transitions from PENDING to IN_PROGRESS. This usually occurs over a weekend to minimize trading disruptions. Each share of stock owned by a shareholder will then be converted into 10 shares, and the split becomes COMPLETE as trading resumes on the ex_date with new split-adjusted prices.
get/api/v2/market_data/stocks/{stock_id}/splits
Query parameters
limitinteger
Number of results to return
order'asc' | 'desc'
Sort order
nextstring nullable
Cursor for next page
previousstring nullable
Cursor for previous page
Response
OK
Example response
{
"data": [
{
"id": "8e3ad59e-a4fa-48ab-9cc2-0a296aa670a6",
"stock_id": "60cc8f91-21d0-4975-bb81-3d737fc2f923",
"record_date": "2024-06-06",
"payable_date": "2024-06-07",
"ex_date": "2024-06-10"
}
]
}