# IOSYS Japan Used Smartphone & Tablet Scraper (`fruitful_quintessence/iosys-japan-used-smartphone-scraper`) Actor

Scrape used smartphones and tablets from iosys.co.jp, Japan leading second-hand mobile retailer. Search by keyword (iPhone, Pixel, Galaxy), get prices, specs, stock, condition, network lock status. For used iPhone price monitoring and phone export arbitrage.

- **URL**: https://apify.com/fruitful\_quintessence/iosys-japan-used-smartphone-scraper.md
- **Developed by:** [atushi ino](https://apify.com/fruitful_quintessence) (community)
- **Categories:** E-commerce
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.01 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## IOSYS Scraper (中古スマホ・タブレット)

Scrapes product listings from [iosys.co.jp](https://www.iosys.co.jp), a leading Japanese second-hand smartphone/tablet retailer. Collects price, rank, stock, release date, and specifications for used phones, tablets, and mobile routers.

### Output Sample

```json
{
  "productId": "336691",
  "title": "Rakuten WiFi Pocket Platinum T99W541 ホワイト【楽天版 SIMフリー】",
  "brand": "楽天",
  "price": 6980,
  "rank": "未使用品",
  "stock": 641,
  "release": "2024/07",
  "condition": "未使用品",
  "spec": "対応サービス:LTE(1/3/7/18/19/26/28A/38/41) 形状:モバイルルーター Wi-Fi:b/g/n 最大速度:150Mbps(下り)/50Mbps(上り) 最大同時接続数:16台(Wi-Fi)/1台(USB) サイズ:約65(H)x96.5(W)x15.3(D)mm 重量:約103g バッテリー:2440mAh SIMサイズ:nanoSIM 発売日:2024/7 接続端子:Type-C",
  "imageUrl": "https://d27ea4kkb8flj9.cloudfront.net/336691_1_S.jpg",
  "productUrl": "https://www.iosys.co.jp/items/mobile-router/rakuten/rakuten_wifi_pockett99w541/336691",
  "scrapedAt": "2026-08-10T10:03:54Z"
}
```

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `searchKeyword` | string | `iPhone` | Search keyword |
| `maxItems` | integer | 100 | Max items to collect |
| `maxPages` | integer | 2 | Max pages to scrape |

### Use Cases

- **Used phone price monitoring** — track iPhone/Android resale values
- **Stock tracking** — monitor inventory across IOSYS stores
- **Reseller arbitrage** — find underpriced devices

### Integrations

Works with Apify [Connectors](https://apify.com/integrations) — push results to Slack, Google Sheets, Notion, or Supabase with one click. Trigger on a [Schedule](https://apify.com/docs/schedules) for daily price tracking.

### Pricing

Pay per event — $0.00005/run + $0.002/item.

# Actor input Schema

## `keyword` (type: `string`):

Keyword to search on iosys.co.jp (e.g. iPhone, Galaxy, iPad)

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

Maximum number of items to scrape

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

Proxy configuration. Use Auto. Free tier only supports automatic proxy.

## Actor input object example

```json
{
  "keyword": "iPhone",
  "maxItems": 100
}
```

# Actor output Schema

## `productId` (type: `string`):

Product ID

## `title` (type: `string`):

Product title

## `brand` (type: `string`):

Brand / manufacturer

## `price` (type: `string`):

Price in yen

## `rank` (type: `string`):

Product rank

## `stock` (type: `string`):

Stock count

## `release` (type: `string`):

Release date (YYYY/MM)

## `condition` (type: `string`):

Condition label

## `spec` (type: `string`):

Detailed specs

## `imageUrl` (type: `string`):

Image URL

## `productUrl` (type: `string`):

Product page URL

## `scrapedAt` (type: `string`):

Scrape timestamp

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("fruitful_quintessence/iosys-japan-used-smartphone-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("fruitful_quintessence/iosys-japan-used-smartphone-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 '{}' |
apify call fruitful_quintessence/iosys-japan-used-smartphone-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fruitful_quintessence/iosys-japan-used-smartphone-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/vvD9vs8D1AwoQrTTS/builds/VoENYRbbePhdVt5Zy/openapi.json
