?>
ESC to close

Corporate Actions API

Last updated:

Retrieve the complete corporate action history for any US-listed security — stock splits, cash and stock dividends, mergers, acquisitions, spin-offs, bankruptcies, delistings, rights offerings, and more. Filter by action type, ticker, related counterparty ticker, or date range. The API is free to use and returns structured data sourced directly from SEC filings and exchange announcements.

Related endpoints: Pair with the Dividends API for daily yield time-series and per-share payment history. Use the Financial Statements API to assess financial health around merger or bankruptcy events.

1. Endpoint & Parameters

At least one filter must be provided with every request — ticker, related_ticker, action, period, or from_date. Multiple filters are combined with AND logic. Results are sorted newest-first and paginated.

GET https://data.businessquant.com/corporate_actions?ticker={ticker}&action={action}&period={period}&api_key={api_key}

Request Parameters

Parameter Description
api_key
Required
Your unique API key for authentication.
ticker
Conditional
Comma-separated ticker symbol(s) of the issuing company. At least one filter is required.
Example: ticker=AAPL  or  ticker=AAPL,MSFT
related_ticker
Optional
Filter by the counterparty ticker in a corporate action — the acquirer in a merger, the parent in a spin-off, etc.
Example: related_ticker=MSFT
action
Conditional
Comma-separated action type(s) to filter by, or all to return every type. Accepted values:

dividend  split  merger  acquisition  spinoff  bankruptcy  delisting  rights
Example: action=split  or  action=merger,acquisition
period
Conditional
Lookback window relative to today. Accepted values: 1y, 6m, 30d, ytd, max.
Example: period=1y
from_date
Conditional
Start of an explicit date range in YYYY-MM-DD format. Cannot be combined with period.
Example: from_date=2022-01-01
till_date
Optional
End of the date range in YYYY-MM-DD format. Only honoured when from_date is also supplied.
Example: till_date=2024-12-31
page
Optional
Page number (1-based). Default: 1.
limit
Optional
Records per page. Range: 1–10,000. Default: 100.

Response Fields

FieldDescription
dateEffective date of the corporate action in YYYY-MM-DD format — ex-dividend date for dividends, effective date for splits and mergers.
tickerTicker symbol of the issuing company.
nameFull company name of the issuer.
actionAction type: dividend, split, merger, acquisition, spinoff, bankruptcy, delisting, rights.
valueNumeric value associated with the action — dividend amount per share (in USD), split ratio (e.g., 4 for a 4-for-1 split), or null when not applicable.
related_tickerCounterparty ticker — the acquirer in an acquisition, the parent company in a spin-off. null when not applicable.
related_nameFull name of the counterparty company. null when not applicable.
notesAdditional context — deal terms, restructuring details, or special conditions associated with the action. null when no additional context is available.

Metadata Block

FieldDescription
tickerReturned when a single ticker was queried.
nameCompany name, returned for single-ticker queries.
earliest_dateOldest action date in the filtered result set.
latest_dateMost recent action date in the result set.
action_rangeSorted array of all distinct action types present in the result set.
paginationObject containing current_page, limit, total_records, and total_pages.
Example cURL Request
curl -X GET "https://data.businessquant.com/corporate_actions?ticker=AAPL&period=1y&api_key=YOUR_API_KEY"
Sample Response (AAPL, period=1y)
{
    "metadata": {
        "earliest_date": "2025-06-30",
        "latest_date": "2026-06-26",
        "action_range": [
            "acquisition_by",
            "acquisition_of",
            "bankruptcy",
            "delisted",
            "dividend",
            "listed",
            "merged_into",
            "merged_with",
            "relation",
            "spinoff",
            "spinoff_dividend",
            "spinoff_from",
            "split",
            "ticker_adopted",
            "ticker_retired"
        ],
        "pagination": {
            "current_page": 1,
            "limit": 100,
            "total_records": 43779,
            "total_pages": 438
        }
    },
    "data": [
        {
            "date": "2026-06-26",
            "ticker": "ALRS",
            "name": "Alerus Financial Corp",
            "action": "dividend",
            "value": "0.22",
            "related_ticker": "HMNF",
            "related_name": null,
            "notes": "Dividend payment of $0.22/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "BPPFF",
            "name": "Bp Plc",
            "action": "dividend",
            "value": "0.04",
            "related_ticker": null,
            "related_name": null,
            "notes": "Dividend payment of $0.04/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "CP",
            "name": "Canadian Pacific Kansas City Ltd/Cn",
            "action": "dividend",
            "value": "0.27",
            "related_ticker": "CP",
            "related_name": null,
            "notes": "Dividend payment of $0.27/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "CTS",
            "name": "Cts Corp",
            "action": "dividend",
            "value": "0.04",
            "related_ticker": "VPF",
            "related_name": null,
            "notes": "Dividend payment of $0.04/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "DHR",
            "name": "Danaher Corp /De/",
            "action": "dividend",
            "value": "0.40",
            "related_ticker": "FTV",
            "related_name": null,
            "notes": "Dividend payment of $0.40/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "ELS",
            "name": "Equity Lifestyle Properties Inc",
            "action": "dividend",
            "value": "0.54",
            "related_ticker": "ELS-PC",
            "related_name": null,
            "notes": "Dividend payment of $0.54/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "EMYB",
            "name": "Embassy Bancorp, Inc.",
            "action": "dividend",
            "value": "0.55",
            "related_ticker": null,
            "related_name": null,
            "notes": "Dividend payment of $0.55/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "FGBI",
            "name": "First Guaranty Bancshares, Inc.",
            "action": "dividend",
            "value": "0.01",
            "related_ticker": "HSTD",
            "related_name": null,
            "notes": "Dividend payment of $0.01/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "FLS",
            "name": "Flowserve Corp",
            "action": "dividend",
            "value": "0.22",
            "related_ticker": "FLS",
            "related_name": null,
            "notes": "Dividend payment of $0.22/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "HUM",
            "name": "Humana Inc",
            "action": "dividend",
            "value": "0.89",
            "related_ticker": "KMA",
            "related_name": null,
            "notes": "Dividend payment of $0.89/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "IRT",
            "name": "Independence Realty Trust, Inc.",
            "action": "dividend",
            "value": "0.18",
            "related_ticker": "TSRE",
            "related_name": null,
            "notes": "Dividend payment of $0.18/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "ISBA",
            "name": "Isabella Bank Corp",
            "action": "dividend",
            "value": "0.28",
            "related_ticker": "ISBA",
            "related_name": null,
            "notes": "Dividend payment of $0.28/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "KDP",
            "name": "Keurig Dr Pepper Inc.",
            "action": "dividend",
            "value": "0.23",
            "related_ticker": "GMCR",
            "related_name": null,
            "notes": "Dividend payment of $0.23/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "LGNYZ",
            "name": "Ligand Pharmaceuticals Inc",
            "action": "dividend",
            "value": "0.00",
            "related_ticker": null,
            "related_name": null,
            "notes": "Dividend payment of $0.00/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "LIEN",
            "name": "Chicago Atlantic BDC, Inc.",
            "action": "dividend",
            "value": "0.34",
            "related_ticker": "SSIC",
            "related_name": null,
            "notes": "Dividend payment of $0.34/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "MDT",
            "name": "Medtronic plc",
            "action": "dividend",
            "value": "0.72",
            "related_ticker": "PHYS1",
            "related_name": null,
            "notes": "Dividend payment of $0.72/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "NRC",
            "name": "Nrc Health",
            "action": "dividend",
            "value": "0.16",
            "related_ticker": "NRCIA",
            "related_name": null,
            "notes": "Dividend payment of $0.16/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "PSBD",
            "name": "Palmer Square Capital BDC Inc.",
            "action": "dividend",
            "value": "0.36",
            "related_ticker": "PSBD",
            "related_name": null,
            "notes": "Dividend payment of $0.36/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "PSEC",
            "name": "Prospect Capital Corp",
            "action": "dividend",
            "value": "0.04",
            "related_ticker": "PBY",
            "related_name": null,
            "notes": "Dividend payment of $0.04/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "RL",
            "name": "Ralph Lauren Corp",
            "action": "dividend",
            "value": "1.00",
            "related_ticker": "RL",
            "related_name": null,
            "notes": "Dividend payment of $1.00/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "SATA",
            "name": "Strive, Inc.",
            "action": "dividend",
            "value": "0.05",
            "related_ticker": "SATA",
            "related_name": null,
            "notes": "Dividend payment of $0.05/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "TCLHF",
            "name": "TCL Electronics Holdings Limited/ADR",
            "action": "dividend",
            "value": "0.50",
            "related_ticker": null,
            "related_name": null,
            "notes": "Dividend payment of $0.50/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "TRNO",
            "name": "Terreno Realty Corp",
            "action": "dividend",
            "value": "0.52",
            "related_ticker": "TRNO",
            "related_name": null,
            "notes": "Dividend payment of $0.52/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "TRTX",
            "name": "TPG RE Finance Trust, Inc.",
            "action": "dividend",
            "value": "0.24",
            "related_ticker": "TRTX-PC",
            "related_name": null,
            "notes": "Dividend payment of $0.24/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "UUGRY",
            "name": "United Utilities Group plc",
            "action": "dividend",
            "value": "0.95",
            "related_ticker": null,
            "related_name": null,
            "notes": "Dividend payment of $0.95/sh"
        },
        {
            "date": "2026-06-26",
            "ticker": "VMI",
            "name": "Valmont Industries Inc",
            "action": "dividend",
            "value": "0.77",
            "related_ticker": "VMI",
            "related_name": null,
            "notes": "Dividend payment of $0.77/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "BBW",
            "name": "Build-A-Bear Workshop Inc",
            "action": "dividend",
            "value": "0.23",
            "related_ticker": "BBW",
            "related_name": null,
            "notes": "Dividend payment of $0.23/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "BHM",
            "name": "Bluerock Homes Trust, Inc.",
            "action": "dividend",
            "value": "0.13",
            "related_ticker": "BHM",
            "related_name": null,
            "notes": "Dividend payment of $0.13/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "BRT",
            "name": "BRT Apartments Corp.",
            "action": "dividend",
            "value": "0.25",
            "related_ticker": "BRT",
            "related_name": null,
            "notes": "Dividend payment of $0.25/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "DBI",
            "name": "Designer Brands Inc.",
            "action": "dividend",
            "value": "0.05",
            "related_ticker": "RVI1",
            "related_name": null,
            "notes": "Dividend payment of $0.05/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "GTY",
            "name": "Getty Realty Corp /Md/",
            "action": "dividend",
            "value": "0.48",
            "related_ticker": "GTY",
            "related_name": null,
            "notes": "Dividend payment of $0.48/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "IMPPP",
            "name": "Imperial Petroleum Inc./Marshall Islands",
            "action": "dividend",
            "value": "0.55",
            "related_ticker": "IMPP",
            "related_name": null,
            "notes": "Dividend payment of $0.55/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "MTN",
            "name": "Vail Resorts Inc",
            "action": "dividend",
            "value": "2.22",
            "related_ticker": "SKIS",
            "related_name": null,
            "notes": "Dividend payment of $2.22/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "NAMI",
            "name": "Jinxin Technology Holding Co.",
            "action": "split",
            "value": "0.04",
            "related_ticker": "NAMI",
            "related_name": null,
            "notes": "25:1 Reverse split"
        },
        {
            "date": "2026-06-25",
            "ticker": "OLP",
            "name": "One Liberty Properties Inc",
            "action": "dividend",
            "value": "0.45",
            "related_ticker": "OLP",
            "related_name": null,
            "notes": "Dividend payment of $0.45/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "PM",
            "name": "Philip Morris International Inc.",
            "action": "dividend",
            "value": "1.47",
            "related_ticker": "PM",
            "related_name": null,
            "notes": "Dividend payment of $1.47/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "POR",
            "name": "Portland General Electric Co /Or/",
            "action": "dividend",
            "value": "0.55",
            "related_ticker": "POR",
            "related_name": null,
            "notes": "Dividend payment of $0.55/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "SATA",
            "name": "Strive, Inc.",
            "action": "dividend",
            "value": "0.05",
            "related_ticker": "SATA",
            "related_name": null,
            "notes": "Dividend payment of $0.05/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "SRE",
            "name": "Sempra",
            "action": "dividend",
            "value": "0.66",
            "related_ticker": "ENSI",
            "related_name": null,
            "notes": "Dividend payment of $0.66/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "WFG",
            "name": "West Fraser Timber Co., Ltd",
            "action": "dividend",
            "value": "0.32",
            "related_ticker": "OSB",
            "related_name": null,
            "notes": "Dividend payment of $0.32/sh"
        },
        {
            "date": "2026-06-25",
            "ticker": "ZBH",
            "name": "Zimmer Biomet Holdings, Inc.",
            "action": "dividend",
            "value": "0.24",
            "related_ticker": "MGRM",
            "related_name": null,
            "notes": "Dividend payment of $0.24/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "ABEV",
            "name": "Ambev S.A.",
            "action": "dividend",
            "value": "0.01",
            "related_ticker": "ABV.C",
            "related_name": null,
            "notes": "Dividend payment of $0.01/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "AHRT",
            "name": "AH Realty Trust, Inc.",
            "action": "dividend",
            "value": "0.14",
            "related_ticker": null,
            "related_name": null,
            "notes": "Dividend payment of $0.14/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "AMIX",
            "name": "Autonomix Medical Inc",
            "action": "split",
            "value": "0.047619047619047616",
            "related_ticker": "AMIX",
            "related_name": null,
            "notes": "21:1 Reverse split"
        },
        {
            "date": "2026-06-24",
            "ticker": "BFC",
            "name": "Bank First Corp",
            "action": "dividend",
            "value": "0.55",
            "related_ticker": "BFC",
            "related_name": null,
            "notes": "Dividend payment of $0.55/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "DD",
            "name": "Dupont De Nemours Inc",
            "action": "split",
            "value": "0.3333333333333333",
            "related_ticker": "DWDP",
            "related_name": null,
            "notes": "3:1 Reverse split"
        },
        {
            "date": "2026-06-24",
            "ticker": "DIN",
            "name": "Dine Brands Global, Inc.",
            "action": "dividend",
            "value": "0.19",
            "related_ticker": "IHP",
            "related_name": null,
            "notes": "Dividend payment of $0.19/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "FLXS",
            "name": "Flexsteel Industries Inc",
            "action": "dividend",
            "value": "0.25",
            "related_ticker": "DMIF",
            "related_name": null,
            "notes": "Dividend payment of $0.25/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "ITRN",
            "name": "Ituran Location & Control Ltd.",
            "action": "dividend",
            "value": "0.50",
            "related_ticker": "ITRN",
            "related_name": null,
            "notes": "Dividend payment of $0.50/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "JILL",
            "name": "J.Jill, Inc.",
            "action": "dividend",
            "value": "0.09",
            "related_ticker": "JILL",
            "related_name": null,
            "notes": "Dividend payment of $0.09/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "KTF",
            "name": "Dws Municipal Income Trust",
            "action": "dividend",
            "value": "0.06",
            "related_ticker": "KTF",
            "related_name": null,
            "notes": "Dividend payment of $0.06/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "NEWT",
            "name": "NewtekOne, Inc.",
            "action": "dividend",
            "value": "0.19",
            "related_ticker": "NEWTI",
            "related_name": null,
            "notes": "Dividend payment of $0.19/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "NEWTP",
            "name": "NewtekOne, Inc.",
            "action": "dividend",
            "value": "0.53",
            "related_ticker": "NEWTP",
            "related_name": null,
            "notes": "Dividend payment of $0.53/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "NXPI",
            "name": "NXP Semiconductors N.V.",
            "action": "dividend",
            "value": "1.01",
            "related_ticker": "NXPI",
            "related_name": null,
            "notes": "Dividend payment of $1.01/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "SATA",
            "name": "Strive, Inc.",
            "action": "dividend",
            "value": "0.05",
            "related_ticker": "SATA",
            "related_name": null,
            "notes": "Dividend payment of $0.05/sh"
        },
        {
            "date": "2026-06-24",
            "ticker": "STX",
            "name": "Seagate Technology Holdings plc",
            "action": "dividend",
            "value": "0.74",
            "related_ticker": "IVAC",
            "related_name": null,
            "notes": "Dividend payment of $0.74/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "ACP",
            "name": "abrdn Income Credit Strategies Fund",
            "action": "dividend",
            "value": "0.08",
            "related_ticker": "ACP",
            "related_name": null,
            "notes": "Dividend payment of $0.08/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "AEF",
            "name": "abrdn Emerging Markets ex-China Fund, Inc.",
            "action": "dividend",
            "value": "0.23",
            "related_ticker": "AEF",
            "related_name": null,
            "notes": "Dividend payment of $0.23/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "AEGXF",
            "name": "Aecon Group Inc.",
            "action": "dividend",
            "value": "0.19",
            "related_ticker": null,
            "related_name": null,
            "notes": "Dividend payment of $0.19/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "AGD",
            "name": "abrdn Global Dynamic Dividend Fund",
            "action": "dividend",
            "value": "0.12",
            "related_ticker": "AGD",
            "related_name": null,
            "notes": "Dividend payment of $0.12/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "AOD",
            "name": "abrdn Total Dynamic Dividend Fund",
            "action": "dividend",
            "value": "0.11",
            "related_ticker": "AOD",
            "related_name": null,
            "notes": "Dividend payment of $0.11/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "APH",
            "name": "Amphenol Corp /De/",
            "action": "dividend",
            "value": "0.25",
            "related_ticker": "PCTI",
            "related_name": null,
            "notes": "Dividend payment of $0.25/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "ASGI",
            "name": "abrdn Global Infrastructure Income Fund",
            "action": "dividend",
            "value": "0.23",
            "related_ticker": "ASGI",
            "related_name": null,
            "notes": "Dividend payment of $0.23/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "AWP",
            "name": "abrdn Global Premier Properties Fund",
            "action": "dividend",
            "value": "0.12",
            "related_ticker": "AWP",
            "related_name": null,
            "notes": "Dividend payment of $0.12/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "BABB",
            "name": "Bab, Inc.",
            "action": "dividend",
            "value": "0.01",
            "related_ticker": null,
            "related_name": null,
            "notes": "Dividend payment of $0.01/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "BANX",
            "name": "ArrowMark Financial Corp.",
            "action": "dividend",
            "value": "0.15",
            "related_ticker": "BANXR",
            "related_name": null,
            "notes": "Dividend payment of $0.15/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "BCAL",
            "name": "California BanCorp \\ CA",
            "action": "dividend",
            "value": "0.10",
            "related_ticker": "CALB",
            "related_name": null,
            "notes": "Dividend payment of $0.10/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "BGB",
            "name": "Blackstone Strategic Credit 2027 Term Fund",
            "action": "dividend",
            "value": "0.08",
            "related_ticker": "BGB",
            "related_name": null,
            "notes": "Dividend payment of $0.08/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "BSL",
            "name": "Blackstone Senior Floating Rate 2027 Term Fund",
            "action": "dividend",
            "value": "0.09",
            "related_ticker": "BSL",
            "related_name": null,
            "notes": "Dividend payment of $0.09/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "BWG",
            "name": "BrandywineGLOBAL-Global Income Opportunities Fund Inc",
            "action": "dividend",
            "value": "0.08",
            "related_ticker": "BWG",
            "related_name": null,
            "notes": "Dividend payment of $0.08/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "CINF",
            "name": "Cincinnati Financial Corp",
            "action": "dividend",
            "value": "0.94",
            "related_ticker": "CINF",
            "related_name": null,
            "notes": "Dividend payment of $0.94/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "CNQ",
            "name": "Canadian Natural Resources Ltd",
            "action": "dividend",
            "value": "0.63",
            "related_ticker": "CNQ",
            "related_name": null,
            "notes": "Dividend payment of $0.63/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "DFP",
            "name": "Flaherty & Crumrine Dynamic Preferred & Income Fund Inc",
            "action": "dividend",
            "value": "0.13",
            "related_ticker": "DFP",
            "related_name": null,
            "notes": "Dividend payment of $0.13/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "DMO",
            "name": "Western Asset Mortgage Opportunity Fund Inc.",
            "action": "dividend",
            "value": "0.12",
            "related_ticker": "DMO",
            "related_name": null,
            "notes": "Dividend payment of $0.12/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "EHI",
            "name": "Western Asset Global High Income Fund Inc.",
            "action": "dividend",
            "value": "0.07",
            "related_ticker": "EHI",
            "related_name": null,
            "notes": "Dividend payment of $0.07/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "EMD",
            "name": "Western Asset Emerging Markets Debt Fund Inc.",
            "action": "dividend",
            "value": "0.10",
            "related_ticker": "EMD",
            "related_name": null,
            "notes": "Dividend payment of $0.10/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "EMF",
            "name": "Templeton Emerging Markets Fund",
            "action": "dividend",
            "value": "0.24",
            "related_ticker": "EMF",
            "related_name": null,
            "notes": "Dividend payment of $0.24/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "EMO",
            "name": "ClearBridge Energy Midstream Opportunity Fund Inc.",
            "action": "dividend",
            "value": "0.36",
            "related_ticker": "EMO",
            "related_name": null,
            "notes": "Dividend payment of $0.36/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "ESLT",
            "name": "Elbit Systems Ltd",
            "action": "dividend",
            "value": "1.00",
            "related_ticker": "ESLT",
            "related_name": null,
            "notes": "Dividend payment of $1.00/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "FAX",
            "name": "Abrdn Asia-Pacific Income Fund, Inc.",
            "action": "dividend",
            "value": "0.17",
            "related_ticker": "FAX",
            "related_name": null,
            "notes": "Dividend payment of $0.17/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "FCUV",
            "name": "Focus Universal Inc",
            "action": "split",
            "value": "0.25",
            "related_ticker": "FCUV",
            "related_name": null,
            "notes": "4:1 Reverse split"
        },
        {
            "date": "2026-06-23",
            "ticker": "FFC",
            "name": "Flaherty & Crumrine PREFERRED & INCOME SECURITIES FUND INC",
            "action": "dividend",
            "value": "0.10",
            "related_ticker": "FFC",
            "related_name": null,
            "notes": "Dividend payment of $0.10/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "FLC",
            "name": "Flaherty & Crumrine Total Return Fund Inc",
            "action": "dividend",
            "value": "0.10",
            "related_ticker": "FLC",
            "related_name": null,
            "notes": "Dividend payment of $0.10/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "FMN",
            "name": "Federated Hermes Premier Municipal Income Fund",
            "action": "dividend",
            "value": "0.04",
            "related_ticker": "FMN",
            "related_name": null,
            "notes": "Dividend payment of $0.04/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "FSCO",
            "name": "FS Credit Opportunities Corp.",
            "action": "dividend",
            "value": "0.06",
            "related_ticker": "FSCO",
            "related_name": null,
            "notes": "Dividend payment of $0.06/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "FSSL",
            "name": "FS Specialty Lending Fund",
            "action": "dividend",
            "value": "0.14",
            "related_ticker": "FSSL",
            "related_name": null,
            "notes": "Dividend payment of $0.14/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "FT",
            "name": "Franklin Universal Trust",
            "action": "dividend",
            "value": "0.04",
            "related_ticker": "FT",
            "related_name": null,
            "notes": "Dividend payment of $0.04/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "FTF",
            "name": "Franklin Ltd Duration Income Trust",
            "action": "dividend",
            "value": "0.06",
            "related_ticker": "FTF.R",
            "related_name": null,
            "notes": "Dividend payment of $0.06/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "GAIN",
            "name": "Gladstone Investment Corporation\\De",
            "action": "dividend",
            "value": "0.08",
            "related_ticker": "GAINN",
            "related_name": null,
            "notes": "Dividend payment of $0.08/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "GDO",
            "name": "Western Asset Global Corporate Opportunity Fund Inc.",
            "action": "dividend",
            "value": "0.12",
            "related_ticker": "GDO",
            "related_name": null,
            "notes": "Dividend payment of $0.12/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "GLAD",
            "name": "Gladstone Capital Corp",
            "action": "dividend",
            "value": "0.15",
            "related_ticker": "GLAD",
            "related_name": null,
            "notes": "Dividend payment of $0.15/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "GOOD",
            "name": "Gladstone Commercial Corp",
            "action": "dividend",
            "value": "0.10",
            "related_ticker": "GOODN",
            "related_name": null,
            "notes": "Dividend payment of $0.10/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "GOODN",
            "name": "Gladstone Commercial Corp",
            "action": "dividend",
            "value": "0.14",
            "related_ticker": "GOOD",
            "related_name": null,
            "notes": "Dividend payment of $0.14/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "GOODO",
            "name": "Gladstone Commercial Corp",
            "action": "dividend",
            "value": "0.13",
            "related_ticker": "GOODO",
            "related_name": null,
            "notes": "Dividend payment of $0.13/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "HFRO",
            "name": "Highland Opportunities & Income Fund",
            "action": "dividend",
            "value": "0.04",
            "related_ticker": "HFRO",
            "related_name": null,
            "notes": "Dividend payment of $0.04/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "HGLB",
            "name": "Highland Global Allocation Fund",
            "action": "dividend",
            "value": "0.09",
            "related_ticker": "HGLB",
            "related_name": null,
            "notes": "Dividend payment of $0.09/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "HIO",
            "name": "Western Asset High Income Opportunity Fund Inc.",
            "action": "dividend",
            "value": "0.04",
            "related_ticker": "HIO",
            "related_name": null,
            "notes": "Dividend payment of $0.04/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "HIX",
            "name": "Western Asset High Income Fund Ii Inc.",
            "action": "dividend",
            "value": "0.05",
            "related_ticker": "HIX",
            "related_name": null,
            "notes": "Dividend payment of $0.05/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "HYI",
            "name": "Western Asset High Yield Opportunity Fund Inc.",
            "action": "dividend",
            "value": "0.10",
            "related_ticker": "HYI",
            "related_name": null,
            "notes": "Dividend payment of $0.10/sh"
        },
        {
            "date": "2026-06-23",
            "ticker": "IGI",
            "name": "Western Asset Investment Grade Opportunity Trust Inc.",
            "action": "dividend",
            "value": "0.07",
            "related_ticker": "IGI",
            "related_name": null,
            "notes": "Dividend payment of $0.07/sh"
        }
    ]
}

API Response — Corporate Actions (1 Year)

Apple Inc. (AAPL)  ·  All action types  ·  period=1y

Company
Earliest Date 2025-06-30
Latest Date 2026-06-26
Total Records 43779
Action Types acquisition_by, acquisition_of, bankruptcy, delisted, dividend, listed, merged_into, merged_with, relation, spinoff, spinoff_dividend, spinoff_from, split, ticker_adopted, ticker_retired
Date Ticker Company Action Value Related Ticker Related Company Notes
2026-06-26ALRSAlerus Financial CorpDividend0.22HMNFDividend payment of $0.22/sh
2026-06-26BPPFFBp PlcDividend0.04Dividend payment of $0.04/sh
2026-06-26CPCanadian Pacific Kansas City Ltd/CnDividend0.27CPDividend payment of $0.27/sh
2026-06-26CTSCts CorpDividend0.04VPFDividend payment of $0.04/sh
2026-06-26DHRDanaher Corp /De/Dividend0.40FTVDividend payment of $0.40/sh
2026-06-26ELSEquity Lifestyle Properties IncDividend0.54ELS-PCDividend payment of $0.54/sh
2026-06-26EMYBEmbassy Bancorp, Inc.Dividend0.55Dividend payment of $0.55/sh
2026-06-26FGBIFirst Guaranty Bancshares, Inc.Dividend0.01HSTDDividend payment of $0.01/sh
2026-06-26FLSFlowserve CorpDividend0.22FLSDividend payment of $0.22/sh
2026-06-26HUMHumana IncDividend0.89KMADividend payment of $0.89/sh
2026-06-26IRTIndependence Realty Trust, Inc.Dividend0.18TSREDividend payment of $0.18/sh
2026-06-26ISBAIsabella Bank CorpDividend0.28ISBADividend payment of $0.28/sh
2026-06-26KDPKeurig Dr Pepper Inc.Dividend0.23GMCRDividend payment of $0.23/sh
2026-06-26LGNYZLigand Pharmaceuticals IncDividend0.00Dividend payment of $0.00/sh
2026-06-26LIENChicago Atlantic BDC, Inc.Dividend0.34SSICDividend payment of $0.34/sh
2026-06-26MDTMedtronic plcDividend0.72PHYS1Dividend payment of $0.72/sh
2026-06-26NRCNrc HealthDividend0.16NRCIADividend payment of $0.16/sh
2026-06-26PSBDPalmer Square Capital BDC Inc.Dividend0.36PSBDDividend payment of $0.36/sh
2026-06-26PSECProspect Capital CorpDividend0.04PBYDividend payment of $0.04/sh
2026-06-26RLRalph Lauren CorpDividend1.00RLDividend payment of $1.00/sh
2026-06-26SATAStrive, Inc.Dividend0.05SATADividend payment of $0.05/sh
2026-06-26TCLHFTCL Electronics Holdings Limited/ADRDividend0.50Dividend payment of $0.50/sh
2026-06-26TRNOTerreno Realty CorpDividend0.52TRNODividend payment of $0.52/sh
2026-06-26TRTXTPG RE Finance Trust, Inc.Dividend0.24TRTX-PCDividend payment of $0.24/sh
2026-06-26UUGRYUnited Utilities Group plcDividend0.95Dividend payment of $0.95/sh
2026-06-26VMIValmont Industries IncDividend0.77VMIDividend payment of $0.77/sh
2026-06-25BBWBuild-A-Bear Workshop IncDividend0.23BBWDividend payment of $0.23/sh
2026-06-25BHMBluerock Homes Trust, Inc.Dividend0.13BHMDividend payment of $0.13/sh
2026-06-25BRTBRT Apartments Corp.Dividend0.25BRTDividend payment of $0.25/sh
2026-06-25DBIDesigner Brands Inc.Dividend0.05RVI1Dividend payment of $0.05/sh
2026-06-25GTYGetty Realty Corp /Md/Dividend0.48GTYDividend payment of $0.48/sh
2026-06-25IMPPPImperial Petroleum Inc./Marshall IslandsDividend0.55IMPPDividend payment of $0.55/sh
2026-06-25MTNVail Resorts IncDividend2.22SKISDividend payment of $2.22/sh
2026-06-25NAMIJinxin Technology Holding Co.Split0.04NAMI25:1 Reverse split
2026-06-25OLPOne Liberty Properties IncDividend0.45OLPDividend payment of $0.45/sh
2026-06-25PMPhilip Morris International Inc.Dividend1.47PMDividend payment of $1.47/sh
2026-06-25PORPortland General Electric Co /Or/Dividend0.55PORDividend payment of $0.55/sh
2026-06-25SATAStrive, Inc.Dividend0.05SATADividend payment of $0.05/sh
2026-06-25SRESempraDividend0.66ENSIDividend payment of $0.66/sh
2026-06-25WFGWest Fraser Timber Co., LtdDividend0.32OSBDividend payment of $0.32/sh
2026-06-25ZBHZimmer Biomet Holdings, Inc.Dividend0.24MGRMDividend payment of $0.24/sh
2026-06-24ABEVAmbev S.A.Dividend0.01ABV.CDividend payment of $0.01/sh
2026-06-24AHRTAH Realty Trust, Inc.Dividend0.14Dividend payment of $0.14/sh
2026-06-24AMIXAutonomix Medical IncSplit0.047619047619047616AMIX21:1 Reverse split
2026-06-24BFCBank First CorpDividend0.55BFCDividend payment of $0.55/sh
2026-06-24DDDupont De Nemours IncSplit0.3333333333333333DWDP3:1 Reverse split
2026-06-24DINDine Brands Global, Inc.Dividend0.19IHPDividend payment of $0.19/sh
2026-06-24FLXSFlexsteel Industries IncDividend0.25DMIFDividend payment of $0.25/sh
2026-06-24ITRNIturan Location & Control Ltd.Dividend0.50ITRNDividend payment of $0.50/sh
2026-06-24JILLJ.Jill, Inc.Dividend0.09JILLDividend payment of $0.09/sh
2026-06-24KTFDws Municipal Income TrustDividend0.06KTFDividend payment of $0.06/sh
2026-06-24NEWTNewtekOne, Inc.Dividend0.19NEWTIDividend payment of $0.19/sh
2026-06-24NEWTPNewtekOne, Inc.Dividend0.53NEWTPDividend payment of $0.53/sh
2026-06-24NXPINXP Semiconductors N.V.Dividend1.01NXPIDividend payment of $1.01/sh
2026-06-24SATAStrive, Inc.Dividend0.05SATADividend payment of $0.05/sh
2026-06-24STXSeagate Technology Holdings plcDividend0.74IVACDividend payment of $0.74/sh
2026-06-23ACPabrdn Income Credit Strategies FundDividend0.08ACPDividend payment of $0.08/sh
2026-06-23AEFabrdn Emerging Markets ex-China Fund, Inc.Dividend0.23AEFDividend payment of $0.23/sh
2026-06-23AEGXFAecon Group Inc.Dividend0.19Dividend payment of $0.19/sh
2026-06-23AGDabrdn Global Dynamic Dividend FundDividend0.12AGDDividend payment of $0.12/sh
2026-06-23AODabrdn Total Dynamic Dividend FundDividend0.11AODDividend payment of $0.11/sh
2026-06-23APHAmphenol Corp /De/Dividend0.25PCTIDividend payment of $0.25/sh
2026-06-23ASGIabrdn Global Infrastructure Income FundDividend0.23ASGIDividend payment of $0.23/sh
2026-06-23AWPabrdn Global Premier Properties FundDividend0.12AWPDividend payment of $0.12/sh
2026-06-23BABBBab, Inc.Dividend0.01Dividend payment of $0.01/sh
2026-06-23BANXArrowMark Financial Corp.Dividend0.15BANXRDividend payment of $0.15/sh
2026-06-23BCALCalifornia BanCorp \ CADividend0.10CALBDividend payment of $0.10/sh
2026-06-23BGBBlackstone Strategic Credit 2027 Term FundDividend0.08BGBDividend payment of $0.08/sh
2026-06-23BSLBlackstone Senior Floating Rate 2027 Term FundDividend0.09BSLDividend payment of $0.09/sh
2026-06-23BWGBrandywineGLOBAL-Global Income Opportunities Fund IncDividend0.08BWGDividend payment of $0.08/sh
2026-06-23CINFCincinnati Financial CorpDividend0.94CINFDividend payment of $0.94/sh
2026-06-23CNQCanadian Natural Resources LtdDividend0.63CNQDividend payment of $0.63/sh
2026-06-23DFPFlaherty & Crumrine Dynamic Preferred & Income Fund IncDividend0.13DFPDividend payment of $0.13/sh
2026-06-23DMOWestern Asset Mortgage Opportunity Fund Inc.Dividend0.12DMODividend payment of $0.12/sh
2026-06-23EHIWestern Asset Global High Income Fund Inc.Dividend0.07EHIDividend payment of $0.07/sh
2026-06-23EMDWestern Asset Emerging Markets Debt Fund Inc.Dividend0.10EMDDividend payment of $0.10/sh
2026-06-23EMFTempleton Emerging Markets FundDividend0.24EMFDividend payment of $0.24/sh
2026-06-23EMOClearBridge Energy Midstream Opportunity Fund Inc.Dividend0.36EMODividend payment of $0.36/sh
2026-06-23ESLTElbit Systems LtdDividend1.00ESLTDividend payment of $1.00/sh
2026-06-23FAXAbrdn Asia-Pacific Income Fund, Inc.Dividend0.17FAXDividend payment of $0.17/sh
2026-06-23FCUVFocus Universal IncSplit0.25FCUV4:1 Reverse split
2026-06-23FFCFlaherty & Crumrine PREFERRED & INCOME SECURITIES FUND INCDividend0.10FFCDividend payment of $0.10/sh
2026-06-23FLCFlaherty & Crumrine Total Return Fund IncDividend0.10FLCDividend payment of $0.10/sh
2026-06-23FMNFederated Hermes Premier Municipal Income FundDividend0.04FMNDividend payment of $0.04/sh
2026-06-23FSCOFS Credit Opportunities Corp.Dividend0.06FSCODividend payment of $0.06/sh
2026-06-23FSSLFS Specialty Lending FundDividend0.14FSSLDividend payment of $0.14/sh
2026-06-23FTFranklin Universal TrustDividend0.04FTDividend payment of $0.04/sh
2026-06-23FTFFranklin Ltd Duration Income TrustDividend0.06FTF.RDividend payment of $0.06/sh
2026-06-23GAINGladstone Investment Corporation\DeDividend0.08GAINNDividend payment of $0.08/sh
2026-06-23GDOWestern Asset Global Corporate Opportunity Fund Inc.Dividend0.12GDODividend payment of $0.12/sh
2026-06-23GLADGladstone Capital CorpDividend0.15GLADDividend payment of $0.15/sh
2026-06-23GOODGladstone Commercial CorpDividend0.10GOODNDividend payment of $0.10/sh
2026-06-23GOODNGladstone Commercial CorpDividend0.14GOODDividend payment of $0.14/sh
2026-06-23GOODOGladstone Commercial CorpDividend0.13GOODODividend payment of $0.13/sh
2026-06-23HFROHighland Opportunities & Income FundDividend0.04HFRODividend payment of $0.04/sh
2026-06-23HGLBHighland Global Allocation FundDividend0.09HGLBDividend payment of $0.09/sh
2026-06-23HIOWestern Asset High Income Opportunity Fund Inc.Dividend0.04HIODividend payment of $0.04/sh
2026-06-23HIXWestern Asset High Income Fund Ii Inc.Dividend0.05HIXDividend payment of $0.05/sh
2026-06-23HYIWestern Asset High Yield Opportunity Fund Inc.Dividend0.10HYIDividend payment of $0.10/sh
2026-06-23IGIWestern Asset Investment Grade Opportunity Trust Inc.Dividend0.07IGIDividend payment of $0.07/sh

3. More Request Examples

Every filter can be combined. Below are common query patterns covering the most useful workflows.

All splits for a ticker (full history)
https://data.businessquant.com/corporate_actions?ticker=AAPL&action=split&period=max&api_key=YOUR_API_KEY
All dividends in the last 2 years
https://data.businessquant.com/corporate_actions?ticker=AAPL&action=dividend&period=2y&api_key=YOUR_API_KEY
All mergers & acquisitions in a date range (market-wide)
https://data.businessquant.com/corporate_actions?action=merger,acquisition&from_date=2024-01-01&till_date=2024-12-31&limit=250&api_key=YOUR_API_KEY
All actions where Microsoft was the acquirer (related_ticker)
https://data.businessquant.com/corporate_actions?related_ticker=MSFT&action=acquisition&period=max&api_key=YOUR_API_KEY
Bankruptcies year-to-date (market-wide)
https://data.businessquant.com/corporate_actions?action=bankruptcy&period=ytd&api_key=YOUR_API_KEY

4. Use Cases

Corporate actions data underpins back-testing accuracy, deal tracking, and event-driven research. These are the most common workflows built on top of this endpoint.

Price History Adjustment

Pull all historical splits for a ticker via action=split&period=max and use the value ratios to back-adjust raw OHLCV data from the Stock Quotes API. This is the foundation of any accurate long-term back-test.

M&A Deal Pipeline Monitoring

Query action=merger,acquisition&period=ytd without a ticker to get a running market-wide deal log. Pair with related_ticker to track every acquisition made by a specific acquirer over time.

Dividend Calendar

Retrieve action=dividend for a basket of tickers to build a forward-looking ex-dividend calendar. The value field returns the per-share dividend amount for each payment, ready for income projection models.

Event-Driven Strategy Research

Use action=spinoff&period=5y to study post-spin-off performance patterns. Combine the effective date from this API with price data from the Quotes API to measure announcement-day returns and N-day drift.

Distressed Asset Screening

Query action=bankruptcy&period=2y to build a dataset of recent Chapter 11 and Chapter 7 filings. Cross-reference against Institutional Ownership data to identify which funds were exposed at the time of filing.

Universe De-listing Cleansing

Pair action=delisting&period=max with the Securities Universe API to identify and remove de-listed tickers from back-test universes — the key step in eliminating survivorship bias.

Multi-ticker queries

Pass a comma-separated list to ticker (e.g., ticker=AAPL,MSFT,GOOGL) to retrieve corporate actions for an entire portfolio in a single call. The response metadata block will not include ticker or name in multi-ticker mode — use the per-row ticker field to identify each record.

Frequently Asked Questions

What action types does this API cover?

The API covers eight distinct action types: dividend (cash and stock distributions), split (forward and reverse splits), merger (company combinations), acquisition (buyouts), spinoff (subsidiary separations), bankruptcy (Chapter 11 and Chapter 7 filings), delisting (exchange removals), and rights (rights offerings). Pass action=all or omit the parameter to return every type.

What does the value field represent for each action type?

The meaning of value depends on the action type. For dividends, it is the per-share cash amount in USD. For splits, it is the split ratio — a value of 4 means a 4-for-1 forward split; a value of 0.5 means a 1-for-2 reverse split. For action types where no numeric value is relevant (mergers, bankruptcies, delistings), the field returns null.

Can I query market-wide corporate actions without specifying a ticker?

Yes. Omit ticker and provide any other filter — action, period, or from_date — to retrieve actions across all companies. For example, action=bankruptcy&period=ytd returns all bankruptcy filings year-to-date for every company in the database. Use the limit parameter (up to 10,000 per page) and paginate with page for large result sets.

What is the related_ticker field used for?

It identifies the counterparty company in actions that involve two entities. In a merger or acquisition, related_ticker is the acquirer. In a spin-off, it is the parent company that separated the subsidiary. You can also filter by related_ticker to find all deals where a specific company acted as the acquirer, which is useful for building acquisition history timelines for large conglomerates.

Can I combine period and from_date in the same request?

No — they are mutually exclusive. Use period for relative lookbacks (e.g., 1y, ytd) and use from_date with optional till_date when you need a specific calendar range. If both are supplied, period takes precedence and from_date is ignored.

Is the Corporate Actions API free to use?

Yes, the Corporate Actions API is free to use. Sign up for an API key and start pulling splits, dividends, mergers, and other corporate actions immediately — no credit card required.