# Salomon Japan Catalogue API Scraper (`rl1987/salomon-api-scraper`) Actor

Scrapes the Salomon Japan product catalogue (name, price, colours, style/article code, size-level stock and images) through the Shopify storefront JSON API the official Salomon app uses. Read-only public catalogue — no accounts, cart or checkout.

- **URL**: https://apify.com/rl1987/salomon-api-scraper.md
- **Developed by:** [R.L.](https://apify.com/rl1987) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 product rows

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## Salomon Catalogue API Scraper

Scrapes the **Salomon Japan product catalogue** — name, price, colours, style/article code,
size-level stock and images — through the Shopify storefront JSON API that the official
Salomon app uses. Read-only public catalogue; no accounts, cart or checkout.

### What it extracts

| Field | Description |
|---|---|
| `name` | Product name |
| `handle` / `styleCode` | Shopify handle and the Salomon style/article code (handle's last `-` segment) |
| `url` | Full product page URL |
| `vendor` / `productType` / `tags` | Catalogue metadata |
| `price` / `priceMin` / `priceMax` | Price in JPY |
| `compareAtPrice` | Compare-at (sale) price in JPY (detail flag) |
| `available` | Product-level availability (detail flag) |
| `colours` / `sizes` | Colour (`option1`) and size (`option2`) values |
| `images` | Full-res image URLs (Shopify CDN) |
| `description` | Product description as plain text (detail flag) |
| `variantColours` / `variantSizes` / `variantSkus` / `variantPrices` / `variantAvailable` | Per-variant (size-level) colour, size, SKU, price and availability |

### Input

| Field | Type | Description |
|---|---|---|
| `category` | select | Browse a category/collection (empty = whole catalogue) |
| `market` | select | Store market (default `jp` → `salomon.jp`) |
| `maxItems` | integer | Maximum products to return (0 = all) |
| `includeDetails` | boolean | Fetch per-product detail (description, media, product availability, compare-at price) |

### Output example

```json
{
  "id": 10569499574581,
  "name": "XT-6",
  "handle": "xt-6-l492110",
  "styleCode": "l492110",
  "url": "https://salomon.jp/products/xt-6-l492110",
  "vendor": "サロモン公式オンラインストア",
  "price": 28600.0,
  "colours": ["Alloy / Black / Lava Falls"],
  "sizes": ["22.5", "23", "23.5", "24", "24.5", "25", "26", "27", "28", "29", "30", "31"],
  "images": ["https://cdn.shopify.com/s/files/1/0673/9981/1381/files/L49211000_0_GHO_XT-6_Alloy_Black_LavaFalls.png?v=1783928630"],
  "description": "街仕様へとアップデートされた伝説的な XT-6 ...",
  "variantSkus": ["L49211000021", "L49211000022"],
  "variantAvailable": [true, true]
}
```

### Cost of usage

The actor uses [pay-per-event](https://docs.apify.com/platform/actors/running/usage-and-resources#pay-per-event)
pricing: you are charged a small amount per product row scraped.

### Legal / ToS

This actor reads publicly available catalogue data from the Salomon Japan storefront, the same
source the official Salomon app loads. Use it only for lawful purposes and in accordance with
Salomon's terms of service and applicable law.

# Actor input Schema

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

Maximum number of products to return (0 = all)

## `includeDetails` (type: `boolean`):

Fetch per-product detail (description, full media, product-level availability and compare-at price)

## `market` (type: `string`):

Store/market domain

## `category` (type: `string`):

Browse a category (leave empty to scrape the whole catalogue)

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

Route requests through a proxy (Apify Proxy by default).

## Actor input object example

```json
{
  "maxItems": 100,
  "includeDetails": false,
  "market": "jp",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "JP"
  }
}
```

# Actor output Schema

## `results` (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 = {
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "JP"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("rl1987/salomon-api-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 = { "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "JP",
    } }

# Run the Actor and wait for it to finish
run = client.actor("rl1987/salomon-api-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 '{
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "JP"
  }
}' |
apify call rl1987/salomon-api-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,rl1987/salomon-api-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/gpPhvpl0vtG946jdK/builds/YoOxc5szfmHin1MwD/openapi.json
