# PR Newswire Product Launch Scraper

**Use case:** 

Track PR Newswire product launch announcements: title, publish date, company, summary, media assets, and URL. Export to JSON or CSV for research.

## Input

```json
{
  "maxItems": 25,
  "keyword": "product launch",
  "dateFrom": "2024-01-01",
  "dateTo": "2024-12-31",
  "industry": "Technology",
  "companyName": "Microsoft Corporation",
  "includeFullText": false,
  "includeMedia": true,
  "enrichOutput": false
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Primary Image",
    "format": "url"
  },
  "id": {
    "label": "Press Release ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "url": {
    "label": "Press Release URL",
    "format": "url"
  },
  "dateline": {
    "label": "Dateline",
    "format": "text"
  },
  "publishedDate": {
    "label": "Published Date",
    "format": "datetime"
  },
  "companyName": {
    "label": "Company Name",
    "format": "text"
  },
  "ticker": {
    "label": "Stock Ticker",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "fullText": {
    "label": "Full Text",
    "format": "text"
  },
  "wordCount": {
    "label": "Word Count",
    "format": "number"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "contactName": {
    "label": "Contact Name",
    "format": "text"
  },
  "contactPhone": {
    "label": "Contact Phone",
    "format": "text"
  },
  "contactEmail": {
    "label": "Contact Email",
    "format": "text"
  },
  "mediaContact": {
    "label": "Media Contact",
    "format": "text"
  },
  "sourceOrganization": {
    "label": "Source Organization",
    "format": "text"
  },
  "distributionType": {
    "label": "Distribution Type",
    "format": "text"
  },
  "urgency": {
    "label": "Urgency",
    "format": "text"
  },
  "images": {
    "label": "Images",
    "format": "json"
  },
  "videos": {
    "label": "Videos",
    "format": "json"
  },
  "documents": {
    "label": "Documents",
    "format": "json"
  },
  "links": {
    "label": "Links",
    "format": "json"
  },
  "relatedReleases": {
    "label": "Related Releases",
    "format": "json"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [PR Newswire Scraper](https://apify.com/parseforge/pr-newswire-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/pr-newswire-scraper) to learn more, explore other use cases, and run it yourself.