# Search iOS Apps By Keyword

**Use case:** 

Keyword search on the App Store. Apple stops keyword search at about two hundred results per term and ignores paging, so asking for more than that changes nothing - the charts are the lever for going wider.

## Input

```json
{
  "appIds": [],
  "startUrls": [],
  "searchTerms": [
    "habit tracker",
    "budget",
    "meditation",
    "invoice"
  ],
  "appsPerTerm": 200,
  "developerIds": [],
  "charts": [
    "topFree"
  ],
  "chartGenres": [],
  "chartLimit": 5,
  "countries": [
    "us"
  ],
  "platform": "iphone",
  "includeAppDetails": true,
  "appsFromEveryCountry": false,
  "includeReviews": false,
  "reviewsPerApp": 20,
  "reviewSort": [
    "mostRecent"
  ],
  "minReviewRating": 0,
  "maxReviewRating": 0,
  "reviewsWithinDays": 0,
  "keywords": [],
  "excludeKeywords": [],
  "genres": [],
  "developerNameContains": [],
  "freeOnly": false,
  "paidOnly": false,
  "minRatingCount": 0,
  "minAppRating": 0,
  "updatedWithinDays": 0,
  "onlyNew": false,
  "emitUnchanged": false,
  "includeScreenshots": false,
  "compactOutput": false,
  "excludeEmptyFields": false,
  "maxItems": 800
}
```

## Output

```json
{
  "app_name": {
    "label": "app_name",
    "format": "string"
  },
  "developer": {
    "label": "developer",
    "format": "string"
  },
  "country": {
    "label": "country",
    "format": "string"
  },
  "primary_genre": {
    "label": "primary_genre",
    "format": "string"
  },
  "formatted_price": {
    "label": "formatted_price",
    "format": "string"
  },
  "rating": {
    "label": "rating",
    "format": "integer"
  },
  "rating_count": {
    "label": "rating_count",
    "format": "integer"
  },
  "version": {
    "label": "version",
    "format": "string"
  },
  "days_since_update": {
    "label": "days_since_update",
    "format": "integer"
  },
  "app_url": {
    "label": "app_url",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [App Store Scraper - iOS App Ratings, Reviews, Metadata, ASO](https://apify.com/snow_leo_data/app-store-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/snow_leo_data/app-store-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/app-store-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
