v47

latestOpenAPI 3.1.0Contact usraw.githubusercontent.com2026-07-1061131268.6 KB
Corporate Actions

Get Stock Splits

Get a list of stock splits for Stocks available for trade via Dinari. 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/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

_sv'PaginatedStockSplitResponse:v1'

Version

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"
    }
  ]
}