Vinted のリアルタイム価格追跡 - 中古の衣類やアクセサリーを扱うヨーロッパのオンラインマーケットプレイス。始める方法は 2 つあります: フルマネージドのインテリジェンスプラットフォーム、または独自のパイプラインを構築するための セルフサービス API です。
Bright Insights は、Bright Data のフルマネージドなリテールインテリジェンスプラットフォームです。スクレイパーを構築する必要も、インフラを維持する必要もありません。分析可能な構造化価格データが、ダッシュボード、データフィード、または BI ツールにそのまま提供されます。
チームが Bright Insights を選ぶ理由:
- 🚀 セットアップ不要 - すぐに使えるダッシュボードとデータフィードで数分で稼働開始
- 🤖 AI 搭載のレコメンデーション - 会話型 AI アシスタントが数百万のデータポイントを即座に実用的なインサイトへ変換
- ⚡ リアルタイム監視 - 1 時間ごとから日次までの更新頻度と即時アラート(email、Slack、webhook)
- 🌍 無制限のスケール - あらゆる Web サイト、あらゆる地域、あらゆる更新頻度に対応
- 🔗 プラグアンドプレイ統合 - AWS、GCP、Databricks、Snowflake などに対応
- 🛡️ フルマネージド - Bright Data が schema 変更、サイト更新、データ品質を自動で処理
主なユースケース:
- ✅ Vinted での再販価値トレンドを追跡
- ✅ 特定商品の出品価格と販売価格を監視
- ✅ プラットフォーム間のアービトラージ機会を特定
- ✅ MAP ポリシー準拠を監視し、価格違反を検出
- ✅ 競合のプロモーションと販促動向を追跡
- ✅ クリーンで正規化されたデータを動的価格設定アルゴリズムや AI モデルに直接投入
月額 $250 から - 最適な見積もりを取得 →
独自のパイプラインを構築したいですか? Bright Data の Web Scraper API を使えば、プロキシやスクレイピングインフラを管理することなく、Vinted の商品データ(価格、在庫状況、レビューなど)にプログラムからアクセスできます。
- Python 3.9 以上
- Bright Data account(無料トライアルあり)
- Bright Data の API token(取得方法)
- Vinted 商品用の Bright Data Web Scraper ID(Web Scrapers control panel で確認)
-
この repository を clone
git clone https://github.com/bright-jp/vinted-price-tracker.git cd vinted-price-tracker -
依存関係をインストール
pip install -r requirements.txt
-
認証情報を設定
.env.exampleを.envにコピーし、値を入力します:cp .env.example .env
BRIGHTDATA_API_TOKEN=your_api_token_here BRIGHTDATA_DATASET_ID=your_dataset_id_here
Web Scraper ID の確認方法 Bright Data Control Panel にログインし、Web Scrapers に移動して、 「Vinted」を検索し、Web Scraper ID をコピーします(形式:
gd_xxxxxxxxxxxx)。
Vinted の商品 URL のリストを渡して、構造化された価格データを取得します:
from price_tracker import track_prices
urls = [
"https://www.vinted.com/product/sample-item-123456",
# Add more product URLs here
]
results = track_prices(urls)
for item in results:
print(f"{item.get('title')} - {item.get('final_price', item.get('price'))} {item.get('currency', '')}")または直接実行:
python price_tracker.pyキーワード検索に一致する商品を見つけます:
from price_tracker import discover_by_keyword
results = discover_by_keyword("laptop", limit=50)Vinted のカテゴリページからすべての商品を収集します:
from price_tracker import discover_by_category
results = discover_by_category(
"https://vinted.com/category/example",
limit=100,
)各結果レコードには次のフィールドが含まれます:
| Field | Description |
|---|---|
url |
出品 URL |
title |
商品タイトル |
brand |
ブランド |
price |
出品価格 |
currency |
通貨コード |
condition |
商品の状態(新品/中古など) |
size |
サイズ(該当する場合) |
seller_name |
出品者のユーザー名 |
seller_rating |
出品者評価 |
images |
商品画像 URL |
description |
商品説明 |
timestamp |
収集タイムスタンプ |
[
{
"url": "https://www.vinted.com/product/sample-item-123456",
"title": "Example Product Name",
"brand": "Example Brand",
"initial_price": 59.99,
"final_price": 44.99,
"currency": "USD",
"discount": "25%",
"in_stock": true,
"rating": 4.5,
"reviews_count": 1234,
"images": ["https://vinted.com/images/product1.jpg"],
"description": "Product description text...",
"timestamp": "2025-01-15T10:30:00Z"
}
]trigger_collection() 関数は、データ収集を制御するためのオプションパラメータを受け付けます:
| Parameter | Type | Default | Description |
|---|---|---|---|
limit |
integer | - | 返すレコードの最大数 |
include_errors |
boolean | true |
結果にエラーレポートを含める |
notify |
string (URL) | - | スナップショットの準備完了時に呼び出す webhook URL |
format |
string | json |
出力形式: json、csv、または ndjson |
オプション付きの例:
from price_tracker import trigger_collection, get_results
inputs = [{"url": "https://www.vinted.com/product/sample-item-123456"}]
snapshot_id = trigger_collection(inputs, limit=200, notify="https://your-webhook.com/hook")
results = get_results(snapshot_id)- 🌟 Vinted Price Tracker - Bright Insights (Managed)
- 🔧 Vinted Scraper API
- 📖 Bright Data Web Scraper API Documentation
- 🗄️ Web Scrapers Control Panel
- 🔑 How to get an API token
- 🌐 Bright Data Homepage
Bright Data により構築 - 業界をリードする Web データプラットフォーム。