# Dividends calendar The dividends calendar endpoint provides a detailed schedule of upcoming and past dividend events for specified date ranges. By using the `start_date` and `end_date` parameters, users can retrieve a list of companies issuing dividends, including the ex-dividend date, payment date, and dividend amount. This endpoint is ideal for tracking dividend payouts and planning investment strategies based on dividend schedules. **API credits cost:** `40` per symbol > **Note:** This API endpoint is available starting with the [Grow](https://twelvedata.com/pricing) plan. ## Parameters - `symbol` (string, optional) Symbol ticker of instrument. For preffered stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct - `figi` (string, optional) Filter by financial instrument global identifier (FIGI). This request parameter is available starting with the Ultra plan - `isin` (string, optional) Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section - `cusip` (string, optional) The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section - `exchange` (string, optional) Exchange where instrument is traded - `mic_code` (string, optional) Market Identifier Code (MIC) under ISO 10383 standard - `country` (string, optional) Country where instrument is traded, e.g., `United States` or `US` - `start_date` (string, optional) Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02` - `end_date` (string, optional) End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02` - `outputsize` (integer, optional) Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum - `page` (integer, optional) Page number ## Response - `` (array of object) - `symbol` (string) Ticker symbol of instrument - `mic_code` (string) Market identifier code (MIC) under ISO 10383 standard - `exchange` (string) Exchange where instrument is traded - `ex_date` (string) Ex-dividend date - `amount` (number) Dividend payment amount ## Example Request ```bash curl "https://api.twelvedata.com/dividends_calendar?apikey=demo" ``` ## Example Response ```json [ { "symbol": "MSFT", "mic_code": "XNGS", "exchange": "NASDAQ", "ex_date": "2024-02-14", "amount": 0.75 } ] ```