# Scrape a Developer's App Store Portfolio

**Use case:** 

Scrape every app in an App Store developer's portfolio: app name, rating, ratings count, price and category, plus developer details. Export to CSV.

## Input

```json
{
  "mode": "developerApps",
  "searchTerms": [
    "habit tracker"
  ],
  "appIds": [
    "324684580"
  ],
  "collection": "TOP_FREE",
  "genre": "ALL",
  "developerIds": [
    "324684583"
  ],
  "maxAppsPerQuery": 50,
  "fullDetails": true,
  "maxReviewsPerApp": 100,
  "reviewsSort": "mostrecent",
  "country": "us",
  "language": "",
  "monitorMode": false,
  "monitorStoreName": "app-store-monitor",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "title": {
    "label": "App"
  },
  "appId": {
    "label": "App ID"
  },
  "artistName": {
    "label": "Developer"
  },
  "developer.website": {
    "label": "Website"
  },
  "developer.artistId": {
    "label": "Artist ID"
  },
  "developer.artistViewUrl": {
    "label": "Developer page"
  },
  "sellerName": {
    "label": "Seller"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple App Store Scraper — Apps, Reviews & Charts](https://apify.com/scrapesage/app-store-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/app-store-scraper) to learn more, explore other use cases, and run it yourself.