# Press releases (New)

The press releases endpoint offers structured, real-time access to official company press releases and corporate announcements from public entities across global markets.

**API credits cost:** `1` per request

> **Note:** This API endpoint is available on the <a href="https://twelvedata.com/pricing">Basic</a> plan (individual) and above.

## Parameters

- `symbol` (string, optional, see notes)
  Symbol ticker of instrument.
For preferred stocks use dot(.) delimiter.
E.g. `BRK.A` or `BRK.B` will be correct
  Example value: `AAPL`


- `figi` (string, optional, see notes)
  Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.
  Example value: `BBG000B9Y5X2`


- `isin` (string, optional, see notes)
  Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  Example value: `US0378331005`


- `cusip` (string, optional, see notes)
  The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section
  Example value: `594918104`


- `exchange` (string, optional)
  Exchange where instrument is traded
  Example value: `NASDAQ`


- `mic_code` (string, optional)
  Market Identifier Code (MIC) under ISO 10383 standard
  Example value: `XNAS`


- `start_date` (string, optional)
  Begin date for filtering items.
Returns press releases with release date on or after this date. Format `2025-12-24T02:07:00`
  Example value: `2025-12-01T00:00:00`


- `end_date` (string, optional)
  End date for filtering items.
Returns press releases with release date on or before this date. Format `2025-12-24T02:07:00`
  Example value: `2025-12-31T23:59:00`


- `language` (string, optional)
  Comma-separated list of languages to filter press releases by language.
  Example value: `en,en-US`


- `timezone` (string, optional)
  Time zone for date filtering. Default is the identifier time zone.
  Example value: `America/New_York`


- `outputsize` (integer, optional)
  Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.

type: number
  Example value: `5`
  Default value: `2`


**Notes:**

 - At least one of the following parameters is required: `symbol`, `figi`, `isin`, `cusip`.

## Response

- `press_releases` (array of object)
  List of press releases
  - `id` (string)
    Press release unique identifier
  - `datetime` (string)
    Press release date in ISO 8601 format
  - `title` (string)
    Press release title
  - `body` (string)
    Press release body in html format
  - `style` (string)
    Custom style applied to the release
  - `language` (array of string)
    Press release language codes

- `status` (string)
  Response status


## Example Request

```bash
curl "https://api.twelvedata.com/press_releases?symbol=AAPL&apikey=demo"
```

## Example Response

```json
{
    "press_releases": [
        {
            "id": "20251201SF35699",
            "datetime": "2021-11-12T11:21:00+01:00",
            "title": "NVIDIA and Synopsys Announce Strategic Partnership to Revolutionize Engineering and Design",
            "body": "&lt;b&gt;Key Highlights&lt;/b&gt;&lt;ul&gt;&lt;li&gt;Multi-year collaboration spans NVIDIA CUDA accelerated computing, agentic and physical AI, and Omniverse digital twins to achieve simulation speed and scale previously unattainable through traditional CPU computing \u2013 opening new market opportunities across engineering.&lt;/li&gt;&lt;li&gt;To further adoption of GPU-accelerated engineering solutions, the companies will collaborate in engineering and marketing activities.&lt;/li&gt;&lt;li&gt;NVIDIA invested $2 billion in Synopsys common stock.&lt;/li&gt;&lt;/ul&gt;...",
            "style": "/* Style Definitions */ ...",
            "language": [
                "en",
                "en-US"
            ]
        }
    ],
    "status": "ok"
}
```
