Skip to main content

Ticker

GET /v1/splits/{ticker}

Get reverse stock split data for a current ticker available through the /v1/splits endpoint. Though the data is the same, it reduces the overall results and allows you to focus on a specific ticker if available.

Request Parameters


apiKey Required

Your API Key.


curl "https://api.rsplit.io/v1/splits/NCNA?apiKey=YOUR_API_KEY"

Response Object


data array

  • ticker string

    The symbol for the given reverse split.

  • exchange string

    Stock exchange where the security is traded.

  • company string

    The company name.

  • ratio string

    The ratio of the reverse split.

  • ex_date string

    The date on which the stock starts trading at the new adjusted split price.

  • date_announced string

    The date on which the revere stock split was announced.


{
"data": [
{
"ticker": "NCNA",
"exchange": "NASDAQ",
"company": "NuCana plc",
"ratio": "1:25",
"ex_date": "2024-04-25",
"date_announced": "2024-03-06"
},
]
}