# Ubuy Global Scraper: Cross-Border Prices & Specs (`getascraper/ubuy-com-scraper`) Actor

Extracts detailed competitive prices, specifications, currencies, and origins from Ubuy (operating in 180+ countries, e.g. ubuy.com, ubuy.com.se, ubuy.co.in). Supports search keywords and category listings.

- **URL**: https://apify.com/getascraper/ubuy-com-scraper.md
- **Developed by:** [GetAScraper](https://apify.com/getascraper) (community)
- **Categories:** E-commerce, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.31 / 1,000 product listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
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 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

## Ubuy Global Scraper: Cross-Border Prices & Specs

Extract product specifications, brand ratings, country origins, and localized prices from Ubuy. Support keyword search and category catalogs across all 180+ global country domains.

***

### What does Ubuy Scraper do?

Ubuy Scraper extracts structured price comparison metrics, spec sheets, brand ratings, and country of origin details from Ubuy, the major global cross-border e-commerce platform. It provides a complete export of listing rows, category catalogs, and detailed specifications.

This tool uses unblocked platform connection channels to load data rapidly and reliably. It operates continuously in the background without needing any browser automation, keeping operational costs exceptionally low. You can configure scheduled runs, integrate the data directly into your workflows, or download output datasets in standard formats like Excel, CSV, or JSON.

***

### Why use Ubuy Scraper?

Resellers, cross-border e-commerce brands, and dropshippers use this tool to monitor international markups and manage retail arbitrage:

- **Compare global prices**: Track and compare pricing differentials between US, UK, EU, and local markets automatically.
- **Identify product specs**: Capture detailed manufacturer specifications and SKU codes.
- **Filter by country origin**: Filter products based on where they are imported from to manage shipping overhead.
- **Monitor brand ratings**: Track customer reviews, ratings, and stock availability across categories.

***

### How to use Ubuy Scraper

Using this tool is straightforward and requires no developer skills:

1. **Select a domain**: Choose your target country site domain, such as US, Sweden, or Turkey.
2. **Choose a mode**: Select your crawling mode, such as searching keywords or browsing a category catalog.
3. **Configure options**: Enter search query keywords or paste a specific category directory link.
4. **Run the tool**: Click the run button to begin extracting listings automatically.
5. **Download your data**: Export the final results in Excel, CSV, XML, or JSON from the dataset tab.

***

### Input

Configure your crawling options using the following fields in the run panel.

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| mode | enum | Yes | Select what to scrape: search keywords or category catalogs. |
| domain | enum | Yes | Select the specific Ubuy country site domain and local currency. |
| keywords | string | No | Query keywords to search for items across Ubuy. |
| categoryUrl | string | No | Specific Ubuy category directory URL to browse. |
| minPrice | number | No | Filter results to only include items with a price greater than or equal to this value in local currency. |
| maxPrice | number | No | Filter results to only include items with a price less than or equal to this value in local currency. |
| scrapeDetails | boolean | No | If enabled, navigates to each product detail page to extract descriptions, ratings, and full specs. |
| maxItems | integer | No | Maximum total item records to extract during the run. |
| proxyConfiguration | object | Yes | Proxy settings for connection routing. |

***

### Output

The scraper outputs flat, spreadsheet-friendly records containing complete listing, brand, and shipping details.

#### JSON output example

```json
{
  "product_id": "B0CGK3YSLB",
  "title": "Apple Watch Series 9 GPS 41mm Smartwatch",
  "price": 4299.00,
  "currency": "SEK",
  "brand": "Apple",
  "imported_from": "US",
  "image_url": "https://images.ubuy.com/afu/images/123/456/__57.jpg",
  "view_item_url": "https://www.ubuy.com.se/en/product/B0CGK3YSLB/apple-watch-series-9",
  "rating": 4.7,
  "reviews_count": 812,
  "in_stock": true,
  "specifications": {
    "size": "41mm",
    "color": "Midnight"
  },
  "scraped_at": "2026-06-26T15:30:00.000Z"
}
```

***

### Data table

The output dataset includes the following data fields for every extracted item.

| Field | Type | Description |
| --- | --- | --- |
| product\_id | string | Unique Ubuy product identifier. |
| title | string | Full name of the listed item. |
| price | number | Current selling price of the item in local currency. |
| currency | string | Local currency code matching the country domain. |
| brand | string | Brand or manufacturer name. |
| imported\_from | string | Country of origin where the product is imported from. |
| image\_url | string | Main product listing thumbnail image link. |
| view\_item\_url | string | Direct listing page URL. |
| rating | number | Visual customer rating score out of 5. |
| reviews\_count | integer | Total customer review count. |
| in\_stock | boolean | Product availability flag. |
| specifications | object | Dynamic key-value specifications map. |
| scraped\_at | string | ISO 8601 extraction timestamp. |

***

### How much does it cost to scrape Ubuy?

This tool is highly optimized and pricing is based on a flat, consumption-friendly rate:

- **Pricing rate**: `$2.49 per 1,000 product records`.
- **Crawl efficiency**: Pure unblocked connection protocols consume no proxy bandwidth or browser memory.
- **10,000 results cost**: Extracting 10,000 products costs exactly **$24.90** with zero hidden fees.

***

### FAQ, disclaimers, and support

#### Is it legal to scrape Ubuy?

Yes. Extracting publicly accessible product descriptions, prices, specifications, and ratings is fully legal. This tool does not require logging into an account, bypassing login walls, or accessing private personal details. Please review local regulations and respect copyright laws.

#### Can I scrape different country domains?

Yes. You can select any target Ubuy country domain and local currency directly from the input dropdown. The scraper automatically adapts its selectors and URL paths to match the selected regional domain.

#### Can I schedule the scraper to run automatically?

Yes. You can use the Apify platform scheduling panel to configure hourly, daily, or weekly runs. This lets you monitor pricing changes or newly listed items automatically.

#### Where can I get support if something breaks?

If you experience any issues, have feedback, or want to request custom features, please visit the Issues tab inside the Apify Store listing. We update the unblocked connection channels actively to ensure high reliability.

# Actor input Schema

## `mode` (type: `string`):

Choose how to find items: keyword search, a category page, or a direct list of product URLs.

## `domain` (type: `string`):

Select the specific Ubuy country site domain (and local currency) to crawl.

## `keywords` (type: `string`):

The search query term to look up across Ubuy's directory (only applicable in search mode).

## `categoryUrl` (type: `string`):

Scrape a specific Ubuy category page (e.g. https://www.ubuy.co.in/category/electronics-10172). Only applicable in category mode.

## `productUrls` (type: `array`):

A list of specific Ubuy product page URLs to scrape directly (e.g. https://www.ubuy.co.in/product/SKU-slug). Only applicable in product URLs mode. Each URL is fetched as a full detail record.

## `sortBy` (type: `string`):

Order the listing results before scraping. Useful to grab the cheapest or top-rated items first (search and category modes only).

## `minPrice` (type: `number`):

Filter results to only include products with a price greater than or equal to this value in local currency.

## `maxPrice` (type: `number`):

Filter results to only include products with a price less than or equal to this value in local currency.

## `scrapeDetails` (type: `boolean`):

If enabled, navigates to each product detail page to extract the original list price, discount, full specs table, and review counts. Leaving this disabled is faster and cheaper.

## `convertToUsd` (type: `boolean`):

Add a price\_usd field converted from the local currency using a live exchange rate. The value is a labeled estimate for cross-country comparison, not the price you pay at checkout.

## `flattenOutput` (type: `boolean`):

Spread the nested specifications object into separate spec\_\* columns. Turn this on for clean CSV, Excel, and Google Sheets exports where each specification gets its own column instead of one JSON blob.

## `maxItems` (type: `integer`):

Maximum total product records to extract during this crawl run.

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

Residential proxies (the default) are needed to pass Ubuy's Cloudflare protection reliably. Datacenter works intermittently but gets blocked under load, so it is not recommended.

## Actor input object example

```json
{
  "mode": "search",
  "domain": "ubuy.us",
  "keywords": "apple watch",
  "categoryUrl": "",
  "productUrls": [],
  "sortBy": "relevanceblender",
  "minPrice": 0,
  "maxPrice": 10000,
  "scrapeDetails": false,
  "convertToUsd": true,
  "flattenOutput": false,
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

## `keyValueStore` (type: `string`):

No description

# 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 = {
    "mode": "search",
    "domain": "ubuy.us",
    "keywords": "apple watch",
    "categoryUrl": "",
    "productUrls": [],
    "sortBy": "relevanceblender",
    "minPrice": 0,
    "maxPrice": 10000,
    "scrapeDetails": false,
    "convertToUsd": true,
    "flattenOutput": false,
    "maxItems": 10,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("getascraper/ubuy-com-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 = {
    "mode": "search",
    "domain": "ubuy.us",
    "keywords": "apple watch",
    "categoryUrl": "",
    "productUrls": [],
    "sortBy": "relevanceblender",
    "minPrice": 0,
    "maxPrice": 10000,
    "scrapeDetails": False,
    "convertToUsd": True,
    "flattenOutput": False,
    "maxItems": 10,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("getascraper/ubuy-com-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 '{
  "mode": "search",
  "domain": "ubuy.us",
  "keywords": "apple watch",
  "categoryUrl": "",
  "productUrls": [],
  "sortBy": "relevanceblender",
  "minPrice": 0,
  "maxPrice": 10000,
  "scrapeDetails": false,
  "convertToUsd": true,
  "flattenOutput": false,
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call getascraper/ubuy-com-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/8pMnCRfuNtKCzqByo/builds/jR9D5lMdEPLHd9ZRU/openapi.json
