# Apple Developer Portfolio Scraper

**Use case:** 

Scrape publicly returned apps for an Apple developer with ratings, versions, prices, genres, bundle IDs, and App Store URLs.

## Input

```json
{
  "developerIds": [
    "389801255"
  ],
  "countries": [
    "us"
  ],
  "maxAppsPerDeveloper": 20
}
```

## Output

```json
{
  "developerName": {
    "label": "Developer name",
    "format": "text"
  },
  "developerId": {
    "label": "Developer ID",
    "format": "text"
  },
  "appName": {
    "label": "App name",
    "format": "text"
  },
  "appId": {
    "label": "App ID",
    "format": "text"
  },
  "bundleId": {
    "label": "Bundle ID",
    "format": "text"
  },
  "primaryGenre": {
    "label": "Genre",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "currentVersionReleaseDate": {
    "label": "Version released",
    "format": "date"
  },
  "storefront": {
    "label": "Storefront",
    "format": "text"
  },
  "appStoreUrl": {
    "label": "App Store",
    "format": "link"
  },
  "artworkUrl": {
    "label": "Artwork",
    "format": "image"
  },
  "query": {
    "label": "Query",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple App Store Developer Portfolio Scraper](https://apify.com/automation-lab/apple-app-store-developer-portfolio-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/apple-app-store-developer-portfolio-scraper) to learn more, explore other use cases, and run it yourself.