GET/buybacks/{identifier}
Advanced or higher

Buyback measures against NAV for a single instrument

NAV accretion per share and average discount to NAV for an instrument's share repurchases over a period. Purchases by an employee benefit trust are excluded from both measures.

Code samples

curl -X GET 'https://api.tickerapp.net/v2/buybacks/<identifier>' \
  -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

Start of the period, by trade date (partial ISO8601 accepted). Omit for all available history.

dateTo
string

End of the period, by trade date (partial ISO8601 accepted).

Responses

200Buyback measures for the instrument
{
  "instrument": {
    "isin": string
  },
  "entity": {
    "name": string
  },
  "listing": {
    "symbol": string | null,
    "mic": string
  },
  "period": {
    "from": string<date> | null,
    "to": string<date> | null,
    "trades": integer,
    "shares": integer<int64>
  },
  "data": {
    "navAccretion": {
      "value": number,
      "currency": string,
      "unit": string<enum>,
      "basis": string<enum>,
      "nav": NavContext,
      "shares": {
        "votingRights": integer<int64>,
        "asAt": string<date>
      },
      "unavailable": string
    },
    "averageDiscount": {
      "value": number,
      "unit": string<enum>,
      "basis": string<enum>,
      "nav": NavContext,
      "inputs": {
        "averagePrice": number,
        "averageNav": number,
        "currency": string,
        "priceUnit": string<enum>
      },
      "unavailable": string
    }
  }
}
403The plan does not include buyback data
404Instrument not found, or it has no recorded buybacks in the period