# GlobeNewswire Press Releases — Premium Listed-Company News (`nexgendata/globenewswire-press-releases-scraper`) Actor

Scrape GlobeNewswire press releases — headline, body, ISO 8601 publication time, source company, ticker(s), ISIN, category, image. Premium listed-company wire (~400/day, NYSE/NASDAQ skew). For PR analysts, sales intel, financial journalists, corp comms.

- **URL**: https://apify.com/nexgendata/globenewswire-press-releases-scraper.md
- **Developed by:** [NexGenData](https://apify.com/nexgendata) (community)
- **Categories:** Business, Marketing, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $150.00 / 1,000 press releases

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 📰 GlobeNewswire Press Releases Scraper

Monitor **GlobeNewswire** corporate press releases as clean, structured JSON — funding rounds, earnings, M&A, product launches, exec changes, and regulatory news from listed and private companies. Built for analysts, PR/comms teams, competitive-intelligence, and anyone who needs newswire announcements in a database instead of a browser tab.

### What you get

Each press release is returned as a structured record:

- **title** — the release headline
- **url** — canonical link to the full release
- **summary** — lead paragraph / dek
- **body** — full release text
- **publication_date** / **modification_date** — ISO timestamps
- **company / source** — issuing organization where available
- **image** — lead image URL where present

Results stream to the dataset as they're found, so you can export to CSV/JSON/Excel or pipe them straight into Google Sheets, Slack, Airtable, or your CRM via Make, Zapier, or n8n.

### Who it's for

- **PR & comms** — track your own and competitors' announcements the day they hit the wire.
- **Analysts & researchers** — capture funding, M&A, and earnings news for a watchlist.
- **GTM / sales** — turn funding and exec-change releases into timed outreach triggers.
- **Agencies** — monitor client and sector keywords at scale.

### Inputs

Provide keywords/companies to monitor and an optional result limit. See the **Input** tab for the full schema with prefilled examples.

```json
{
  "keywords": ["Series B", "acquires", "appoints CEO"],
  "maxItems": 50
}
````

### Sample output

```json
{
  "title": "Acme Robotics Closes $40M Series B to Expand Automated Fulfillment",
  "url": "https://www.globenewswire.com/news-release/2026/06/06/acme-robotics-series-b",
  "summary": "Acme Robotics today announced a $40M Series B led by Northwind Ventures...",
  "publication_date": "2026-06-06T13:00:00Z",
  "modification_date": "2026-06-06T13:05:00Z",
  "source": "GlobeNewswire",
  "image": "https://ml.globenewswire.com/.../acme.jpg"
}
```

### How it works

The actor reads GlobeNewswire's public news feed and release pages, extracts the structured fields above, and pushes one record per release to the dataset. It uses a polite crawl against public pages only — no login, no paywalled content.

### ⚙️ Recurring monitoring

Run it on a **schedule** (Apify Schedules, or via Make/Zapier/n8n) to get a rolling feed of new releases for your keywords. Dedupe downstream by `url` so you only alert on new items.

### 🔗 Related Actors

- [PR Newswire Press Releases Scraper](https://apify.com/nexgendata/pr-newswire-press-releases-scraper?fpr=2ayu9b) — the same workflow for PR Newswire.
- [Brand Mention Monitor](https://apify.com/nexgendata/brand-mention-monitor?fpr=2ayu9b) — news + web mentions with sentiment.
- [SEC Form 8-K Material Events Tracker](https://apify.com/nexgendata/sec-form-8k-material-events-scraper?fpr=2ayu9b) — material corporate events from SEC filings.
- [Company Enrichment](https://apify.com/nexgendata/company-enrichment-tool?fpr=2ayu9b) — turn a company name in a release into firmographics.

### 💵 Pricing

Pay-per-use: a small per-result charge (plus a per-run start fee). See the **Pricing** tab for current rates. New to Apify? You can [start free here](https://www.apify.com/?fpr=2ayu9b).

### ❓ FAQ

**Does it need a login?** No — it reads GlobeNewswire's public release pages.

**How do I avoid duplicate alerts?** Dedupe by `url` against a sheet or store so only newly seen releases are sent.

**Can I filter by keyword?** Yes — pass keywords/companies in the input; only matching releases are returned.

**Can I schedule it?** Yes — use Apify Schedules or trigger it from Make, Zapier, or n8n for recurring monitoring.

### About

Built by **NexGenData** — a fleet of public-data Apify actors for GTM, research, and monitoring workflows. Browse them all at [thenextgennexus.com/actors-by-workflow](https://thenextgennexus.com/actors-by-workflow/).

⭐ Found this useful? A quick review on the Apify Store helps other teams discover it.

# Actor input Schema

## `searchQuery` (type: `string`):

Case-insensitive substring match against release title + summary. Empty = no keyword filter (returns latest releases from the chosen feed). Examples: 'earnings', 'IPO', 'biotech', 'Microsoft', 'merger'.

## `industryFilter` (type: `string`):

GlobeNewswire industry feed slug in the form '<id>-<Name>'. Example: '9576-Biotechnology', '9572-Banking', '9577-Computer-Hardware', '9579-Energy-Alternate-Sources', '9580-Pharmaceuticals'. Leave empty to use the default public-companies wire (covers all industries). Find slugs at https://www.globenewswire.com/RssFeed/.

## `maxResults` (type: `integer`):

Max press releases to return (1-500). Each release is one dataset row. The RSS feed returns the latest 20 entries per page, so values above ~20 may return fewer rows than requested if upstream filters (search/date) eliminate candidates.

## `fromDate` (type: `string`):

Earliest publication timestamp (UTC, inclusive). Accepts 'YYYY-MM-DD' or full ISO 8601. Empty = no lower bound. Example: '2026-05-01'.

## `toDate` (type: `string`):

Latest publication timestamp (UTC, inclusive). Accepts 'YYYY-MM-DD' or full ISO 8601. Empty = no upper bound. Example: '2026-05-22'.

## Actor input object example

```json
{
  "maxResults": 5
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQuery": "",
    "industryFilter": "",
    "maxResults": 5,
    "fromDate": "",
    "toDate": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgendata/globenewswire-press-releases-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchQuery": "",
    "industryFilter": "",
    "maxResults": 5,
    "fromDate": "",
    "toDate": "",
}

# Run the Actor and wait for it to finish
run = client.actor("nexgendata/globenewswire-press-releases-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQuery": "",
  "industryFilter": "",
  "maxResults": 5,
  "fromDate": "",
  "toDate": ""
}' |
apify call nexgendata/globenewswire-press-releases-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=nexgendata/globenewswire-press-releases-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "GlobeNewswire Press Releases — Premium Listed-Company News",
        "description": "Scrape GlobeNewswire press releases — headline, body, ISO 8601 publication time, source company, ticker(s), ISIN, category, image. Premium listed-company wire (~400/day, NYSE/NASDAQ skew). For PR analysts, sales intel, financial journalists, corp comms.",
        "version": "0.0",
        "x-build-id": "WYzcJCtPyPfqahkbr"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/nexgendata~globenewswire-press-releases-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-nexgendata-globenewswire-press-releases-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/nexgendata~globenewswire-press-releases-scraper/runs": {
            "post": {
                "operationId": "runs-sync-nexgendata-globenewswire-press-releases-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/nexgendata~globenewswire-press-releases-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-nexgendata-globenewswire-press-releases-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchQuery": {
                        "title": "Search query (optional)",
                        "type": "string",
                        "description": "Case-insensitive substring match against release title + summary. Empty = no keyword filter (returns latest releases from the chosen feed). Examples: 'earnings', 'IPO', 'biotech', 'Microsoft', 'merger'."
                    },
                    "industryFilter": {
                        "title": "Industry filter (optional)",
                        "type": "string",
                        "description": "GlobeNewswire industry feed slug in the form '<id>-<Name>'. Example: '9576-Biotechnology', '9572-Banking', '9577-Computer-Hardware', '9579-Energy-Alternate-Sources', '9580-Pharmaceuticals'. Leave empty to use the default public-companies wire (covers all industries). Find slugs at https://www.globenewswire.com/RssFeed/."
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Max press releases to return (1-500). Each release is one dataset row. The RSS feed returns the latest 20 entries per page, so values above ~20 may return fewer rows than requested if upstream filters (search/date) eliminate candidates.",
                        "default": 50
                    },
                    "fromDate": {
                        "title": "From date (ISO, optional)",
                        "type": "string",
                        "description": "Earliest publication timestamp (UTC, inclusive). Accepts 'YYYY-MM-DD' or full ISO 8601. Empty = no lower bound. Example: '2026-05-01'."
                    },
                    "toDate": {
                        "title": "To date (ISO, optional)",
                        "type": "string",
                        "description": "Latest publication timestamp (UTC, inclusive). Accepts 'YYYY-MM-DD' or full ISO 8601. Empty = no upper bound. Example: '2026-05-22'."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
