---
title: "Stock Splits v3"
method: GET
path: "/v3/reference/splits"
tags: ["reference:stocks"]
---

# Stock Splits v3

`GET /v3/reference/splits`

Get a list of historical stock splits, including the ticker symbol, the execution date, and the factors of the split ratio.

## Query parameters

- `ticker` string
- `execution_date` string, date
- `reverse_split` boolean, nullable
- `ticker.gte` string
- `ticker.gt` string
- `ticker.lte` string
- `ticker.lt` string
- `execution_date.gte` string, date
- `execution_date.gt` string, date
- `execution_date.lte` string, date
- `execution_date.lt` string, date
- `order` 'asc' | 'desc'
- `limit` integer
- `sort` 'execution_date' | 'ticker'

## Response `200`

A list of stock splits.

- object
  - `next_url` string — If present, this value can be used to fetch the next page of data.
  - `request_id` string — A request id assigned by the server.
  - `results` object[] — An array of results containing the requested data.
    - `execution_date` string, required — The execution date of the stock split. On this date the stock split was applied.
    - `id` string, required — The unique identifier for this stock split.
    - `split_from` number, float, required — The second number in the split ratio. For example: In a 2-for-1 split, split_from would be 1.
    - `split_to` number, float, required — The first number in the split ratio. For example: In a 2-for-1 split, split_to would be 2.
    - `ticker` string, required — The ticker symbol of the stock split.
  - `status` string — The status of this request's response.

---

[API](https://skmtc.net/massive/apis/polygon-api.md) · [All operations](https://skmtc.net/massive/apis/polygon-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/massive/polygon-api/revisions/ad6f143e43aa/schema)
