Skip to main content
GET
/
v1
/
stock
/
split
Get Stock Split History
curl --request GET \
  --url https://api.aries.com/v1/stock/split \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "symbol": "AAPL",
      "date": "2020-08-31",
      "fromFactor": 1,
      "toFactor": 4
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string

Single ticker symbol

Example:

"AAPL"

tickers
string

Comma-separated list of ticker symbols

Example:

"AAPL,TSLA,NVDA"

tickerFrom
string

Filter tickers >= this value (inclusive)

Example:

"A"

tickerAfter
string

Filter tickers > this value (exclusive)

Example:

"A"

tickerTo
string

Filter tickers <= this value (inclusive)

Example:

"Z"

tickerBefore
string

Filter tickers < this value (exclusive)

Example:

"Z"

executionDate
string<date>

Exact execution date in YYYY-MM-DD format

Example:

"2020-08-31"

executionDateFrom
string<date>

Execution date >= (inclusive)

Example:

"2020-01-01"

executionDateAfter
string<date>

Execution date > (exclusive)

Example:

"2020-01-01"

executionDateTo
string<date>

Execution date <= (inclusive)

Example:

"2024-12-31"

executionDateBefore
string<date>

Execution date < (exclusive)

Example:

"2024-12-31"

adjustmentType
enum<string>

Exact type: forward_split, reverse_split, stock_dividend

Available options:
forward_split,
reverse_split,
stock_dividend
Example:

"forward_split"

adjustmentTypes
string

Comma-separated list of adjustment types

Example:

"forward_split,reverse_split"

limit
integer

Maximum number of results (1-5000)

Required range: 1 <= x <= 5000
Example:

100

sort
string

Sort columns with direction (e.g., ticker.asc, execution_date.desc)

Example:

"execution_date.desc"

next
string

Pagination cursor from previous response

Response

Successful response

data
object[]

Array of stock split events