# Swift Package Index Releases Scraper

**Use case:** 

Scrape recent Swift package releases from the Swift Package Index with name, version, owner, repo, and description. Export to JSON or CSV.

## Input

```json
{
  "feed": "releases",
  "maxItems": 50
}
```

## Output

```json
{
  "name": {
    "label": "📦 Package",
    "format": "text"
  },
  "version": {
    "label": "🏷️ Version",
    "format": "text"
  },
  "owner": {
    "label": "👤 Owner",
    "format": "text"
  },
  "repository": {
    "label": "🔗 Repo",
    "format": "link"
  },
  "url": {
    "label": "🌐 SPI Page",
    "format": "link"
  },
  "description": {
    "label": "📝 Description",
    "format": "text"
  },
  "publishedAt": {
    "label": "📅 Published",
    "format": "text"
  },
  "feed": {
    "label": "🗂️ Feed",
    "format": "text"
  },
  "identifier": {
    "label": "🆔 Identifier",
    "format": "text"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

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