GET/buybacks/{identifier}/history
Advanced or higher

Share buyback history for a single instrument

Share repurchases an issuer has announced for one instrument, newest first. Prices are reported in the unit the announcement used and are not converted, so read price.unit alongside every price: 604.00 with unit: minor and 6.04 with unit: major are the same amount.

Code samples

curl -X GET 'https://api.tickerapp.net/v2/buybacks/<identifier>/history' \
  -H 'x-api-key: $TICKER_API_KEY'

Try it

Try it live
Send a real request to this endpoint with your API key. Sign in to try it from your browser.
Sign in to try →

Parameters

Path parameters

identifierrequired
string

ISIN (12 chars) or MIC:symbol.

Query parameters

dateFrom
string

Filter by trade date from this date (partial ISO8601 accepted).

dateTo
string

Filter by trade date to this date (partial ISO8601 accepted).

pageSize
integer

Number of items per page (default 50, max 200)

Default: 50
pageNumber
integer

Page number (1-indexed). Mutually exclusive with pageCursor.

Responses

200Buyback history for the instrument
{
  "instrument": {
    "isin": string
  },
  "entity": {
    "name": string
  },
  "listing": {
    "symbol": string | null,
    "mic": string
  },
  "data": [BuybackRecord],
  "meta": {
    "paging": ClassicPaging
  }
}
403The plan does not include buyback data
404Instrument not found, or it has no recorded buybacks