# App Stores Scraper (`scraped_org/app-stores-scraper`) Actor

Effortlessly gather app data from both the Google Play Store and Apple App Store.
Our Actor is designed for speed, reliability, and scalability, handling multiple apps in a single run with ease.
Perfect for businesses, developers, and analysts looking to gain insights and make data-driven decisions.

- **URL**: https://apify.com/scraped\_org/app-stores-scraper.md
- **Developed by:** [Scraped](https://apify.com/scraped_org) (community)
- **Categories:** SEO tools, Developer tools
- **Stats:** 157 total users, 3 monthly users, 99.9% runs succeeded, 6 bookmarks
- **User rating**: No ratings yet

## Pricing

$25.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#rental-actors

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## App Stores Scraper

Effortlessly gather app data from both the **Google Play Store** and **Apple App Store**.<br>
Our Actor is designed for speed, reliability, and scalability, handling multiple apps in a single run with ease.<br>
Perfect for businesses, developers, and analysts looking to gain insights and make data-driven decisions.<br>
Apify proxies are supported by this actor. See [explanation](#proxy). See those links for more information: [Link1](https://docs.apify.com/sdk/python/docs/concepts/proxy-management), [Link2](https://docs.apify.com/platform/actors/development/actor-definition/input-schema/specification/v1#object)<br>
Key features include:

- App Details
- App Reviews
- Top Apps
- App Search

### Actions

| Action Name                                         | Action Code                 | Description                                  |
| --------------------------------------------------- | --------------------------- | -------------------------------------------- |
| [App Store App Details](#app-store-app-details)     | `"apple_store_app_details"` | Get App Details from Apple App Store         |
| [Apple Store Top Apps](#apple-store-top-apps)       | `"apple_store_top_apps"`    | Get Top Apps (Top Charts) in Apple App Store |
| [Apple Store Search App](#apple-store-search-app)   | `"apple_store_search_apps"` | Search Apps in Apple App Store               |
| [Google Play App Details](#google-play-app-details) | `"google_play_app_details"` | Get App Details from Google Play             |
| [Google Play App Reviews](#google-play-app-reviews) | `"google_play_app_reviews"` | Get App Reviews from Google Play             |
| [Google Play Top Apps](#google-play-top-apps)       | `"google_play_top_apps"`    | Get Top Apps (Top Charts) in Google Play     |
| [Google Play Search App](#google-play-search-app)   | `"google_play_search_apps"` | Search Apps in Google Play                   |

#### App Store App Details

Get App Details from Apple App Store.

##### Inputs

| Input Name    | Input Code      | Description                                            | Type             | Constraints                                             | Required | Default                     |
| ------------- | --------------- | ------------------------------------------------------ | ---------------- | ------------------------------------------------------- | -------- | --------------------------- |
| Action        | `action`        | Perform extraction of app details from Apple App Store | String           | Pass `"apple_store_app_details"` to perform this action | Yes      | `"apple_store_app_details"` |
| Country       | `country`       | 2 letters country code (ISO 3166-2)                    | String           | Valid country code                                      | No       | `"us"`                      |
| Language      | `language`      | 2 letters language code (ISO 639-1)                    | String           | Valid language Code                                     | No       | `"en"`                      |
| Apple App IDs | `apple_app_ids` | List of Apple App IDs                                  | Array of Strings | Valid IDs. Non valid IDs will be skipped                | Yes      |                             |

#### Apple Store Top Apps

Get Top Apps (Top Charts) in Apple App Store.

##### Inputs

| Input Name                   | Input Code                          | Description                               | Type             | Constraints                                                             | Required | Default                     |
| ---------------------------- | ----------------------------------- | ----------------------------------------- | ---------------- | ----------------------------------------------------------------------- | -------- | --------------------------- |
| Action                       | `action`                            | Perform search of apps in Apple App Store | String           | Pass `"apple_store_top_apps"` to perform this action                    | Yes      | `"apple_store_app_details"` |
| Country                      | `country`                           | 2 letters country code (ISO 3166-2)       | String           | Valid country code                                                      | No       | `"us"`                      |
| Language                     | `language`                          | 2 letters language code (ISO 639-1)       | String           | Valid language Code                                                     | No       | `"en"`                      |
| Apple Device Types           | `apple_store_top_apps_device_types` | List of Apple Device Type                 | Array of Strings | Valid Values: <br>- iPhone (`"iphone"`)<br>- iPad (`"ipad"`)            | No       | `["iphone"]`                |
| Apple Store Genres           | `apple_store_top_apps_genres`       | List of Apple Store Genres                | Array of Strings | Valid Values: See [**Apple App Store Genres**](#apple-app-store-genres) | No       | `["6005"]`                  |
| Apple Store Modes            | `apple_store_top_apps_modes`        | List of Apple Store Modes                 | Array of Strings | Valid Values: <br>- Top Free (`top-free`) <br>- Top Free (`"top-paid"`) | No       | `["top-free"]`              |
| Apple Store Maximum Top Apps | `apple_store_max_top_apps`          | Max tops apps to extract                  | Integer          | 1 ≤ apple\_store\_max\_top\_apps ≤ 100                                      | No       | 100                         |

##### Apple App Store Genres

Apple App Store Genres Names and Their Code

> Kids Apps: `"36"`<br>
> Business Apps: `"6000"`<br>
> Weather Apps: `"6001"`<br>
> Utilities Apps: `"6002"`<br>
> Travel Apps: `"6003"`<br>
> Sports Apps: `"6004"`<br>
> Social Networking Apps: `"6005"`<br>
> Reference Apps: `"6006"`<br>
> Productivity Apps: `"6007"`<br>
> Photo video Apps: `"6008"`<br>
> News Apps: `"6009"`<br>
> Navigation Apps: `"6010"`<br>
> Music Apps: `"6011"`<br>
> Lifestyle Apps: `"6012"`<br>
> Health Fitness Apps: `"6013"`<br>
> Finance Apps: `"6015"`<br>
> Entertainment Apps: `"6016"`<br>
> Education Apps: `"6017"`<br>
> Books Apps: `"6018"`<br>
> Medical Apps: `"6020"`<br>
> Magazines Newspapers Apps: `"6012"`<br>
> Food Drink Apps: `"6023"`<br>
> Shopping Apps: `"6024"`<br>
> Developer tools Apps: `"6026"`<br>
> Graphics design Apps: `"6027"`<br>
> Action Games: `"7001"`<br>
> Adventure Games: `"7002"`<br>
> Casual Games: `"7003"`<br>
> Board Games: `"7004"`<br>
> Card Games: `"7005"`<br>
> Casino Games: `"7006"`<br>
> Family Games: `"7009"`<br>
> Music Games: `"7011"`<br>
> Puzzle Games: `"7012"`<br>
> Racing Games: `"7013"`<br>
> Role Playing Games: `"7014"`<br>
> Simulation Games: `"7015"`<br>
> Sports Games: `"7016"`<br>
> Strategy Games: `"7017"`<br>
> Trivia Games: `"7018"`<br>
> Word Games: `"7019`

#### Apple Store Search App

Search Apps in Apple App Store.

##### Inputs

| Input Name              | Input Code                | Description                                         | Type   | Constraints                                             | Required | Default                     |
| ----------------------- | ------------------------- | --------------------------------------------------- | ------ | ------------------------------------------------------- | -------- | --------------------------- |
| Action                  | `action`                  | Perform extraction of top apps from Apple App Store | String | Pass `"apple_store_search_apps"` to perform this action | Yes      | `"apple_store_app_details"` |
| Country                 | `country`                 | 2 letters country code (ISO 3166-2)                 | String | Valid country code                                      | No       | `"us"`                      |
| Language                | `language`                | 2 letters language code (ISO 639-1)                 | String | Valid language Code                                     | No       | `"en"`                      |
| Apple Store Search Apps | `apple_store_search_apps` | Search text (e.g. `"music apps"`)                   | String |                                                         | Yes      |                             |

#### Google Play App Details

Get App Details from Google Play.

##### Inputs

| Input Name        | Input Code          | Description                                        | Type             | Constraints                                             | Required | Default                     |
| ----------------- | ------------------- | -------------------------------------------------- | ---------------- | ------------------------------------------------------- | -------- | --------------------------- |
| Action            | `action`            | Perform extraction of app details from Google Play | String           | Pass `"google_play_app_details"` to perform this action | Yes      | `"apple_store_app_details"` |
| Country           | `country`           | 2 letters country code (ISO 3166-2)                | String           | Valid country code                                      | No       | `"us"`                      |
| Language          | `language`          | 2 letters language code (ISO 639-1)                | String           | Valid language Code                                     | No       | `"en"`                      |
| Google Bundle IDs | `google_bundle_ids` | List of Google Bundle IDs                          | Array of Strings | Valid IDs. Non valid IDs will be skipped                | Yes      |                             |

#### Google Play App Reviews

Get App Reviews from Google Play.

##### Inputs

| Input Name                     | Input Code                        | Description                                        | Type             | Constraints                                                                                                                         | Required | Default                     |
| ------------------------------ | --------------------------------- | -------------------------------------------------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -------- | --------------------------- |
| Action                         | `action`                          | Perform extraction of app reviews from Google Play | String           | Pass `"google_play_app_reviews"` to perform this action                                                                             | Yes      | `"apple_store_app_details"` |
| Country                        | `country`                         | 2 letters country code (ISO 3166-2)                | String           | Valid country code                                                                                                                  | No       | `"us"`                      |
| Language                       | `language`                        | 2 letters language code (ISO 639-1)                | String           | Valid language Code                                                                                                                 | No       | `"en"`                      |
| Google Bundle IDs              | `google_bundle_ids`               | List of Google Bundle IDs                          | Array of Strings | Valid IDs. Non valid IDs will be skipped                                                                                            | Yes      |                             |
| Google Play Review Sort By     | `google_play_reviews_sort_by`     | Sort reviews by given value                        | String           | Valid Value: <br>- Newest (`"newest"`)<br>- Most Relevant (`"most_relevant"`)<br>- Rating (`"rating"`)                              | No       | `"newest"`                  |
| Google Play Review Device Type | `google_play_reviews_device_type` | Filter By Device Type                              | String           | Valid Values: <br>- All (`"all"`)<br>- Phone (`"phone"`) <br>- Tablet (`"tablet"`)<br>- Chromebook(`"chromebook"`)<br>- TV (`"tv"`) | No       | `"all"`                     |
| Google Play Review Rating      | `google_play_reviews_rating`      | Filter By Review Rating                            | String           | Valid Values: <br>- All (`"all"`)<br>- 1 (`"1"`)<br>- 2 (`"2"`)<br>- 3 (`"3"`)<br>- 4 (`"4"`)<br>- 5 (`"5"`)                        | No       | `"all"`                     |
| Google Play Maximum Reviews    | `google_play_max_reviews`         | Max reviews to extract                             | Integer          | Greater or equal to 1                                                                                                               | No       | 100                         |

#### Google Play Top Apps

Get Top Apps (Top Charts) in Google Play.

##### Inputs

| Input Name                   | Input Code                        | Description                                     | Type             | Constraints                                                                                                                                                                                                                                                                                 | Required | Default                     |
| ---------------------------- | --------------------------------- | ----------------------------------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | --------------------------- |
| Action                       | `action`                          | Perform extraction of top apps from Google Play | String           | Pass `"google_play_top_apps"` to perform this action                                                                                                                                                                                                                                        | Yes      | `"apple_store_app_details"` |
| Country                      | `country`                         | 2 letters country code (ISO 3166-2)             | String           | Valid country code                                                                                                                                                                                                                                                                          | No       | `"us"`                      |
| Language                     | `language`                        | 2 letters language code (ISO 639-1)             | String           | Valid language Code                                                                                                                                                                                                                                                                         | No       | `"en"`                      |
| Google Play Modes            | `google_play_top_apps_modes`      | List of Google Device Type                      | Array of Strings | Valid Values: <br>- Top Selling Free (`"topselling_free"`)<br>- Top Selling Paid (`"topselling_paid"`)<br>- Top Grossing (`"topgrossing"`)<br>- Movers Shakers (`"movers_shakers"`)<br>- Top Selling New Free (`"topselling_new_free"`)<br>- Top Selling New Paid (`"topselling_new_paid"`) | No       | `["topselling_free"]`       |
| Google Play Categories       | `google_play_top_apps_categories` | List of Google Play Categories                  | Array of Strings | Valid Values: See [**Google Play Categories**](#google-play-categories)                                                                                                                                                                                                                     | No       | `["SOCIAL"]`                |
| Google Play Maximum Top Apps | `google_play_max_top_apps`        | Max tops apps to extract                        | Integer          | 1 ≤ google\_play\_max\_top\_apps ≤ 200                                                                                                                                                                                                                                                          | No       | 200                         |

##### Google Play Categories

> "OVERALL"<br>
> "APPLICATION"<br>
> "GAME"<br>
> "ART\_AND\_DESIGN"<br>
> "AUTO\_AND\_VEHICLES"<br>
> "BEAUTY"<br>
> "BOOKS\_AND\_REFERENCE"<br>
> "BUSINESS"<br>
> "COMICS"<br>
> "COMMUNICATION"<br>
> "DATING"<br>
> "EDUCATION"<br>
> "ENTERTAINMENT"<br>
> "EVENTS"<br>
> "FINANCE"<br>
> "FOOD\_AND\_DRINK"<br>
> "HEALTH\_AND\_FITNESS"<br>
> "HOUSE\_AND\_HOME"<br>
> "LIFESTYLE"<br>
> "MAPS\_AND\_NAVIGATION"<br>
> "MEDICAL"<br>
> "MUSIC\_AND\_AUDIO"<br>
> "NEWS\_AND\_MAGAZINES"<br>
> "PARENTING"<br>
> "PERSONALIZATION"<br>
> "PHOTOGRAPHY"<br>
> "PRODUCTIVITY"<br>
> "SHOPPING"<br>
> "SOCIAL"<br>
> "SPORTS"<br>
> "TOOLS"<br>
> "TRAVEL\_AND\_LOCAL"<br>
> "VIDEO\_PLAYERS"<br>
> "WEATHER"<br>
> "LIBRARIES\_AND\_DEMO"<br>
> "GAME\_ARCADE"<br>
> "GAME\_PUZZLE"<br>
> "GAME\_CARD"<br>
> "GAME\_CASUAL"<br>
> "GAME\_RACING"<br>
> "GAME\_SPORTS"<br>
> "GAME\_ACTION"<br>
> "GAME\_ADVENTURE"<br>
> "GAME\_BOARD"<br>
> "GAME\_CASINO"<br>
> "GAME\_EDUCATIONAL"<br>
> "GAME\_MUSIC"<br>
> "GAME\_ROLE\_PLAYING"<br>
> "GAME\_SIMULATION"<br>
> "GAME\_STRATEGY"<br>
> "GAME\_TRIVIA"<br>
> "GAME\_WORD"<br>
> "ANDROID\_WEAR"<br>
> "FAMILY"<br>
> "FAMILY\_ACTION"<br>
> "FAMILY\_BRAINGAMES"<br>
> "FAMILY\_CREATE"<br>
> "FAMILY\_EDUCATION"<br>
> "FAMILY\_MUSICVIDEO"<br>
> "FAMILY\_PRETEND"

#### Google Play Search App

Search Apps in Google Play.

##### Inputs

| Input Name              | Input Code                | Description                           | Type   | Constraints                                             | Required | Default                     |
| ----------------------- | ------------------------- | ------------------------------------- | ------ | ------------------------------------------------------- | -------- | --------------------------- |
| Action                  | `action`                  | Perform search of apps in Google Play | String | Pass `"google_play_search_apps"` to perform this action | Yes      | `"apple_store_app_details"` |
| Country                 | `country`                 | 2 letters country code (ISO 3166-2)   | String | Valid country code                                      | No       | `"us"`                      |
| Language                | `language`                | 2 letters language code (ISO 639-1)   | String | Valid language Code                                     | No       | `"en"`                      |
| Google Play Search Apps | `google_play_search_apps` | Search text (e.g. `"music apps"`)     | String |                                                         | Yes      |                             |

### Proxy

`proxy` object should be defined by the required proxy technique.<br>
The following section will help to define the `proxy` object.

#### Data Center Proxies

| Field               | Description                                                                                                                                | Type    | Default |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | ------- | ------- |
| `useApifyProxy`     | Whether to use Apify Proxies.                                                                                                              | Boolean | `true`  |
| `apifyProxyCountry` | Taking Data Center proxies of specific country.<br>2 letters country code (ISO 3166-2)<br>If blank the proxies can be taken from anywhere. | String  |         |

#### Residential Proxies

| Field               | Description                                                                                                                                | Type            | Default |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | --------------- | ------- |
| `useApifyProxy`     | Whether to use Apify Proxies.                                                                                                              | Boolean         | `true`  |
| `apifyProxyGroups`  | Specify `["RESIDENTIAL"]` to use residential proxy.                                                                                        | Array of String |         |
| `apifyProxyCountry` | Taking residential proxies of specific country.<br>2 letters country code (ISO 3166-2)<br>If blank the proxies can be taken from anywhere. | String          |         |

#### Special Proxies

| Field               | Description                                                                                                                                | Type            | Default |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | --------------- | ------- |
| `useApifyProxy`     | Whether to use Apify Proxies                                                                                                               | Boolean         | `true`  |
| `apifyProxyGroups`  | Specify `["GOOGLE_SERP"]` to use special proxy.<br>Other groups can be specified here - Search that in Apify for more information.         | Array of String |         |
| `apifyProxyCountry` | Taking residential proxies of specific country.<br>2 letters country code (ISO 3166-2)<br>If blank the proxies can be taken from anywhere. | String          |         |

#### Own Proxies

| Field           | Description                                                                                                              | Type            | Default |
| --------------- | ------------------------------------------------------------------------------------------------------------------------ | --------------- | ------- |
| `useApifyProxy` | Whether to use Apify Proxies. Pass `false` to use your own proxies.                                                      | Boolean         | `true`  |
| `proxyUrls`     | Specify your own proxies in an array of string with this format:<br>`http://username:password@my-proxy.example.com:port` | Array of String | `[]`    |

#### No Proxies

| Field           | Description                                                        | Type    | Default |
| --------------- | ------------------------------------------------------------------ | ------- | ------- |
| `useApifyProxy` | Whether to use Apify Proxies. Pass `false` to run without proxies. | Boolean | `true`  |

# Actor input Schema

## `action` (type: `string`):

Select an action to perform

## `country` (type: `string`):

2 letters country code (ISO 3166-2)

## `language` (type: `string`):

2 letters language code (ISO 639-1)

## `apple_app_ids` (type: `array`):

Apple App IDs

## `apple_store_max_reviews` (type: `integer`):

How many reviews to extract

## `apple_store_top_apps_device_types` (type: `array`):

Apple Device Types

## `apple_store_top_apps_modes` (type: `array`):

Apple Store Modes

## `apple_store_top_apps_genres` (type: `array`):

Apple Store Genres

## `apple_store_search_apps` (type: `string`):

Search apps in Apple Store

## `google_bundle_ids` (type: `array`):

Google Bundle IDs

## `google_play_reviews_sort_by` (type: `string`):

Google Play Review Sort By

## `google_play_reviews_device_type` (type: `string`):

Google Play Review Device Type

## `google_play_reviews_rating` (type: `string`):

Google Play Review Rating

## `google_play_max_reviews` (type: `integer`):

How many reviews to extract

## `google_play_top_apps_modes` (type: `array`):

Google Play Modes

## `google_play_top_apps_categories` (type: `array`):

Google Play Categories

## `google_play_max_top_apps` (type: `integer`):

How many Top Apps to extract

## `google_play_search_apps` (type: `string`):

Search apps in Google Play

## `proxy` (type: `object`):

Select proxies to be used by your crawler.

## Actor input object example

```json
{
  "action": "apple_store_app_details",
  "country": "us",
  "language": "en",
  "apple_app_ids": [
    "284882215"
  ],
  "apple_store_max_reviews": 20,
  "apple_store_top_apps_device_types": [
    "iphone"
  ],
  "apple_store_top_apps_modes": [
    "top-free"
  ],
  "apple_store_top_apps_genres": [
    "6005"
  ],
  "google_play_reviews_sort_by": "newest",
  "google_play_reviews_device_type": "all",
  "google_play_reviews_rating": "all",
  "google_play_max_reviews": 100,
  "google_play_top_apps_modes": [
    "topselling_free"
  ],
  "google_play_top_apps_categories": [
    "SOCIAL"
  ],
  "google_play_max_top_apps": 200,
  "proxy": {
    "useApifyProxy": true
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scraped_org/app-stores-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "proxy": { "useApifyProxy": True } }

# Run the Actor and wait for it to finish
run = client.actor("scraped_org/app-stores-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call scraped_org/app-stores-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,scraped_org/app-stores-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/4CdVNVQzYN3F77sHm/builds/N3VflF2vL5ItmqSRL/openapi.json
