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>'
{ "results": [ { "id": "E987D589F61E7FAE48774F7C79B0E801", "ticker": "AAPL", "executionDate": "2020-08-31", "splitFrom": 1, "splitTo": 4, "adjustmentType": "forward_split", "historicalAdjustmentFactor": 0.25 } ], "status": "OK", "requestId": "a47d1beb8c11b6ae897ab76a1b095d8d" }

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Response payload

Successful responses return a results array of split events. Each event uses ticker, executionDate, splitFrom, and splitTo; optional event metadata includes id, adjustmentType, and historicalAdjustmentFactor. Paginated responses can include nextUrl, and the response wrapper includes status.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

tickers
string

Single ticker symbol, such as AAPL. Use it to narrow results to one company.

Example:

"AAPL"

tickersAnyOf
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 start filter. Returns split events on or after this date.

Example:

"2020-01-01"

executionDateAfter
string<date>

Execution-date after filter. Returns split events after this date, excluding the date itself.

Example:

"2020-01-01"

executionDateTo
string<date>

Execution-date end filter. Returns split events on or before this date.

Example:

"2024-12-31"

executionDateBefore
string<date>

Execution-date before filter. Returns split events before this date, excluding the date itself.

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 to return. Use smaller values for UI pages and larger values for exports within API limits. (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 the previous response. Omit it on the first request, then send the returned cursor to fetch the next page. from previous response

Response

Successful response

results
object[]
required

Array of stock split events

status
string
required

Response status

Example:

"OK"

nextUrl
string

Pagination URL for the next page, when available

requestId
string

Provider request identifier, when available