# AliExpress Store / Seller Profile Scraper (`xtracto/aliexpress-store-scraper`) Actor

Extract AliExpress storefront identity: company name, business type, year established, follower count, rating, country, main products. Gracefully degrades when the storefront is served as a CSR shell.

- **URL**: https://apify.com/xtracto/aliexpress-store-scraper.md
- **Developed by:** [Farhan Febrian Nauval](https://apify.com/xtracto) (community)
- **Categories:** E-commerce
- **Stats:** 1 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## AliExpress Store Scraper

Extract any AliExpress seller's public profile — store name, business details, year established, follower count, rating, country, and main products — from any store URL.

### Why use this actor

- No AliExpress account or login required — works on fully public store pages.
- Accepts full store URLs or bare numeric store IDs interchangeably.
- Returns rich identity data: company name, business license, registered address, business type, and main products.
- Trust signals included — positive feedback rate, follower count, top-rated flag, and store rating.
- Stable JSON output ready to load into any database, spreadsheet, or data pipeline.
- Automatic retries ensure reliable results even on slower store pages.

### How it works

1. You provide one or more AliExpress store URLs or numeric store IDs.
2. The actor visits each store page and extracts the public seller profile.
3. Trust signals, contact details, and catalog metadata are parsed from the storefront.
4. Results stream into your Apify dataset as each store is processed.
5. Download the complete dataset as JSON, CSV, or Excel when the run finishes.

You don't need to manage any browsers or scrapers.

### Input

```json
{
  "storeUrls": [
    { "url": "https://www.aliexpress.com/store/1101283016" }
  ],
  "country": "US",
  "currency": "USD",
  "maxConcurrency": 4,
  "maxRequestRetries": 6,
  "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "US" }
}
````

| Field | Type | Description |
|---|---|---|
| `storeUrls` | array | Full store URLs (`https://www.aliexpress.com/store/<id>`) or bare numeric store IDs. |
| `country` | string | Two-letter ISO country code used when loading the storefront (e.g. `US`, `GB`, `DE`). Default: `US`. |
| `currency` | string | ISO currency code (e.g. `USD`, `EUR`, `GBP`). Default: `USD`. |
| `maxConcurrency` | integer | Maximum parallel store fetches. Default: 4. |
| `maxRequestRetries` | integer | Per-request retry budget before giving up. Default: 6. |
| `proxyConfiguration` | object | Apify Proxy or your own proxy list. RESIDENTIAL group is recommended. |

### Output

One record per store:

```json
{
  "url": "https://www.aliexpress.com/store/1101283016",
  "storeId": "1101283016",
  "storeName": "UGREEN Official Store",
  "companyName": "Shenzhen Ugreen Techn Co., Ltd.",
  "businessLicense": "91440300MA5EXXXXXXXX",
  "registeredAddress": "Shenzhen, Guangdong, China",
  "businessType": "Manufacturer",
  "yearEstablished": 2012,
  "mainProducts": "USB cables, charging accessories, audio adapters",
  "country": "China",
  "positiveRate": "98.3",
  "followers": 284500,
  "rating": 4.9,
  "topRated": true,
  "pageTitle": "UGREEN Official Store - AliExpress",
  "canonicalUrl": "https://www.aliexpress.com/store/1101283016",
  "scrapedAt": "2026-05-13T04:35:22Z"
}
```

| Field | Type | Description |
|---|---|---|
| `url` | string | The store URL that was scraped. |
| `storeId` | string | AliExpress numeric store ID. |
| `storeName` | string | Store display name. |
| `companyName` | string | Registered legal entity name (where disclosed). |
| `businessLicense` | string | Business license number (where disclosed). |
| `registeredAddress` | string | Registered business address (where disclosed). |
| `businessType` | string | Business classification (e.g. Manufacturer, Retailer, Trading Company). |
| `yearEstablished` | integer | Year the store was registered on AliExpress. |
| `mainProducts` | string | Products the seller self-describes as their main catalog. |
| `country` | string | Seller's country. |
| `positiveRate` | string | Percentage of positive buyer feedback. |
| `followers` | integer | Number of store followers. |
| `rating` | number | Store star rating (0–5). |
| `topRated` | boolean | Whether AliExpress has awarded a top-rated badge. |
| `scrapedAt` | string | ISO 8601 timestamp of when the record was collected. |

### Other AliExpress Scrapers

| Actor | Description |
|---|---|
| [AliExpress Search Scraper](https://apify.com/search?q=aliexpress-search-scraper) | Keyword search results across multiple pages. |
| [AliExpress Category Scraper](https://apify.com/search?q=aliexpress-category-scraper) | Browse products by category ID. |
| [AliExpress Product Scraper](https://apify.com/search?q=aliexpress-product-scraper) | Full product detail from individual product URLs. |
| [AliExpress Store Scraper](https://apify.com/search?q=aliexpress-store-scraper) | Store profile and identity data from seller pages. |
| [AliExpress Review Scraper](https://apify.com/search?q=aliexpress-review-scraper) | Per-product review aggregates for every item in a store. |

# Actor input Schema

## `storeUrls` (type: `array`):

Either full URLs (https://www.aliexpress.com/store/<id>) or bare numeric store IDs.

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

Two-letter ISO country code used when warming up the storefront via /store/<id>.

## `currency` (type: `string`):

ISO currency code used for warm-up locale cookies.

## `maxConcurrency` (type: `integer`):

Maximum parallel store fetches.

## `maxRequestRetries` (type: `integer`):

How many TLS-profile rotations are attempted per store before giving up.

## `proxyConfiguration` (type: `object`):

Apify Proxy or your own list. RESIDENTIAL recommended to bypass storefront WAF.

## Actor input object example

```json
{
  "storeUrls": [
    {
      "url": "https://www.aliexpress.com/store/1101283016"
    }
  ],
  "country": "US",
  "currency": "USD",
  "maxConcurrency": 4,
  "maxRequestRetries": 6,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# 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 = {
    "storeUrls": [
        {
            "url": "https://www.aliexpress.com/store/1101283016"
        }
    ],
    "country": "US",
    "currency": "USD"
};

// Run the Actor and wait for it to finish
const run = await client.actor("xtracto/aliexpress-store-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 = {
    "storeUrls": [{ "url": "https://www.aliexpress.com/store/1101283016" }],
    "country": "US",
    "currency": "USD",
}

# Run the Actor and wait for it to finish
run = client.actor("xtracto/aliexpress-store-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "storeUrls": [
    {
      "url": "https://www.aliexpress.com/store/1101283016"
    }
  ],
  "country": "US",
  "currency": "USD"
}' |
apify call xtracto/aliexpress-store-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=xtracto/aliexpress-store-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "AliExpress Store / Seller Profile Scraper",
        "description": "Extract AliExpress storefront identity: company name, business type, year established, follower count, rating, country, main products. Gracefully degrades when the storefront is served as a CSR shell.",
        "version": "0.1",
        "x-build-id": "dYpkw8tfH6LocOG5P"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/xtracto~aliexpress-store-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-xtracto-aliexpress-store-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/xtracto~aliexpress-store-scraper/runs": {
            "post": {
                "operationId": "runs-sync-xtracto-aliexpress-store-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/xtracto~aliexpress-store-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-xtracto-aliexpress-store-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "storeUrls"
                ],
                "properties": {
                    "storeUrls": {
                        "title": "AliExpress store URLs or storeIds",
                        "type": "array",
                        "description": "Either full URLs (https://www.aliexpress.com/store/<id>) or bare numeric store IDs.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "country": {
                        "title": "Ship-to country",
                        "type": "string",
                        "description": "Two-letter ISO country code used when warming up the storefront via /store/<id>.",
                        "default": "US"
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "ISO currency code used for warm-up locale cookies.",
                        "default": "USD"
                    },
                    "maxConcurrency": {
                        "title": "Concurrency",
                        "minimum": 1,
                        "maximum": 16,
                        "type": "integer",
                        "description": "Maximum parallel store fetches.",
                        "default": 4
                    },
                    "maxRequestRetries": {
                        "title": "Max retries per request",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "How many TLS-profile rotations are attempted per store before giving up.",
                        "default": 6
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Apify Proxy or your own list. RESIDENTIAL recommended to bypass storefront WAF.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
