# PR Newswire Release URL Text Extractor

**Use case:** 

Extract full text and structured metadata from a public PR Newswire release URL without login, browser automation, or an API key.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.prnewswire.com/news-releases/save-the-date-for-the-alfa-laval-capital-markets-day-on-18-november-2026-302831843.html"
    }
  ],
  "maxItems": 1,
  "fetchDetails": true,
  "keywords": [],
  "industries": [],
  "subjects": [],
  "publishedAfter": "",
  "publishedBefore": "",
  "maxConcurrency": 5
}
```

## Output

```json
{
  "releaseId": {
    "label": "Release ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "modifiedAt": {
    "label": "Modified at",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "industries": {
    "label": "Industries",
    "format": "array"
  },
  "subjects": {
    "label": "Subjects",
    "format": "array"
  },
  "dateline": {
    "label": "Dateline",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "issuer": {
    "label": "Issuer",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "text": {
    "label": "Full text",
    "format": "string"
  },
  "mediaUrls": {
    "label": "Media URLs",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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