# Pull App Store Search Data With No Code to Maintain

**Use case:** 

Extract Apple App Store search results in one managed run, no code to build. Get each app's rank, title, developer, rating, price, and store link.

## Input

```json
{
  "term": "fitness tracker",
  "country": "us",
  "lang": "en-us",
  "num": 15,
  "device": "desktop",
  "disallow_explicit": false,
  "property": "",
  "max_pages": 1
}
```

## Output

```json
{
  "search_position_global": {
    "label": "Global Position Across Pages",
    "format": "integer"
  },
  "title": {
    "label": "App"
  },
  "developer_name": {
    "label": "Developer Name",
    "format": "string"
  },
  "rating_average": {
    "label": "Rating (Average)",
    "format": "number"
  },
  "rating_count": {
    "label": "Rating Count",
    "format": "integer"
  },
  "price_type": {
    "label": "Price Type",
    "format": "string"
  },
  "price_amount": {
    "label": "Price Amount",
    "format": "number"
  },
  "price_currency": {
    "label": "Price Currency",
    "format": "string"
  },
  "link": {
    "label": "App Store Link",
    "format": "string"
  },
  "search_term": {
    "label": "Search Term",
    "format": "string"
  },
  "search_country": {
    "label": "Search Country",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple App Store | Scrape App Store Search Results & Keywords](https://apify.com/johnvc/apple-app-store-search) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/apple-app-store-search) to learn more, explore other use cases, and run it yourself.