Vinted Listing Details Scraper
Provide Vinted listing-page URLs and receive item, seller, price, condition, shipping, and image details.
概要
Turn a set of Vinted listing pages into a structured view of the items they contain. Each returned row combines the listing title and price with condition, brand, size, material, color, shipping details, seller information, and up to three item photos.
This makes public marketplace listings easier to compare at scale. Instead of copying values from individual cards and item pages, analysts can work from one consistent table that keeps product attributes, seller signals, and visual references together.
Data notes
The data comes from publicly visible Vinted listings reached through the supplied listing-page URLs. Text values remain in the language and display format shown by the source marketplace. Price fields are returned as display text, so their currency symbols, decimal separators, and any buyer-protection wording should be retained when comparing records. “Listed time” is a relative label such as “Il y a 5 jours,” not a fixed timestamp. Optional attributes such as size, material, seller location, protected price, or additional photos can be empty when a listing does not display them. Private, removed, expired, or login-restricted content is not covered.
What results look like
Each record represents one Vinted item found through a supplied listing page:
| Listing title | Listed price | Condition | Brand | Seller name | Seller rating |
|---|---|---|---|---|---|
| Lunettes steampunk avec ailes | Vinted | 9,00€ | Très bon état | Inconnu | maddyneko | 5.0 |
| Steampunk Sunglasses | Vinted | 9,18€ | Très bon état | STEAMPUNK | Endra Model | 5.0 |
Other available columns include “Color,” “Material,” “Shipping price,” “Seller review count,” “Buyer protection,” and three photo URLs.
Use cases
- For price benchmarking, compare “Listed price,” “Condition,” and “Brand” to see how similar secondhand items are positioned.
- For assortment research, group “Listing title,” “Color,” “Material,” and “Size” to understand which product attributes appear across a result set.
- For seller screening, use “Seller name,” “Seller rating,” and “Seller review count” to identify established sellers and records that may need further review.
- For visual catalog work, pair “Listing title” with “Primary photo URL,” “Second photo URL,” and “Third photo URL” to build a reference set for manual review or merchandising analysis.
適用範囲と境界
Accepts 1 to 10,000 Vinted listing-page URLs per run and returns publicly visible listing details; fields absent from a source listing can be empty.
- 適している用途
- When you need structured item and seller details from one or more Vinted listing pages
- When you need comparable price, condition, brand, shipping, and image data for marketplace research
- 適さない用途
- When you only have product keywords and no Vinted listing-page URL
- When you need private account data, transaction history, or information that is not visible on public listings
失敗時の処理
作者が宣言した失敗時と再試行の動作です。連携時にはシステムプロンプトに含めることをおすすめします。
- 1If a run returns no records, verify that each URL still opens a public Vinted listing page and remove unavailable or malformed URLs before retrying
- 2Transient collection failures can be retried with the same URLs; repeated failures for a specific listing usually mean the page is unavailable or no longer public
入力
この App の呼び出しに必要なパラメータで、manifest.json の input.schema から生成されています。
| フィールド | 業務名称 | 型 | 必須 | デフォルト | 列挙値/制約 | 例 | 説明 |
|---|---|---|---|---|---|---|---|
| listing_page_urls | Vinted listing page URLs | array<string> | はい | — | 最大 10000 件 | ["https://www.vinted.fr/catalog?search_text=steampunk%20lunettes%20de%20soleil&time=1754616374"] | Full Vinted listing-page URLs to collect. Enter 1 to 10,000 URLs, one URL per item; each value can contain up to 1,000 characters. |
出力
1 件のレコードのフィールド構造で、manifest.json の output.schema から生成されています。
| フィールド | 業務名称 | 型 | 例 | 説明 |
|---|---|---|---|---|
| address | Seller location | string | Seller location text displayed with the listing when available. | |
| listed_ago | Listed time | string | Il y a 5 jours | Relative time text showing when the item was added. |
| color | Color | string | Noir, Doré | Color or colors shown for the item. |
| shipping_cost | Shipping price | string | à partir de 1,95€ | Shipping price text displayed on the listing, including its currency symbol when shown. |
| brand | Brand | string | Inconnu | Brand displayed for the item. |
| material | Material | string | Material information displayed for the item. | |
| photo_1 | Primary photo URL | string | https://images1.vinted.net/t/06_00438_RrWe7MJZ9KuTorjXm9QNbu4U/f800/1788458283.webp?s=76f4541d5477c0c51a34972f769b5c6466a4adcf | Address of the first item photo; used as the record identifier because the source output has no listing ID or item URL field. |
| photo_2 | Second photo URL | string | https://images1.vinted.net/t/02_00d6b_npYwSaLMeHHmgHABoBZdh6A5/f800/1788458283.webp?s=f7c8645a5a120bda002fd8641fc0e69207dc0980 | Address of the second item photo when available. |
| photo_3 | Third photo URL | string | https://images1.vinted.net/t/06_01c27_hKGfAszecE1ZxrxCmbDgXSWE/f800/1788458283.webp?s=7e425ab8ae884c8add9c1fdc0979e3757eca6129 | Address of the third item photo when available. |
| listed_price | Listed price | string | 9,00€ | Item price text displayed on the listing, including its currency symbol. |
| buyer_protection_price | Protected price | string | Price text that includes buyer-protection costs when the source displays it. | |
| buyer_protection | Buyer protection | string | Inclut la Protection acheteurs | Buyer-protection message displayed with the listing. |
| seller_rating | Seller rating | string | 5.0 | Seller rating text displayed on the listing. |
| size | Size | string | Item size displayed on the listing when available. | |
| title | Listing title | string | Lunettes steampunk avec ailes | Vinted | Title displayed for the Vinted listing. |
| seller_name | Seller name | string | maddyneko | Seller display name associated with the listing. |
| condition | Condition | string | Très bon état | Item condition text displayed on the listing. |
| seller_review_count | Seller review count | string | 78 | Number of seller evaluations as displayed by Vinted. |
レコード Schema
出力はレコード単位で 1 件ずつ返されます。 detail.output.idFieldHint
{
"type": "object",
"properties": {
"address": {
"type": "string",
"title": "Seller location",
"description": "Seller location text displayed with the listing when available.",
"prefill": ""
},
"listed_ago": {
"type": "string",
"title": "Listed time",
"description": "Relative time text showing when the item was added.",
"prefill": "Il y a 5 jours"
},
"color": {
"type": "string",
"title": "Color",
"description": "Color or colors shown for the item.",
"prefill": "Noir, Doré"
},
"shipping_cost": {
"type": "string",
"title": "Shipping price",
"description": "Shipping price text displayed on the listing, including its currency symbol when shown.",
"prefill": "à partir de 1,95€"
},
"brand": {
"type": "string",
"title": "Brand",
"description": "Brand displayed for the item.",
"prefill": "Inconnu"
},
"material": {
"type": "string",
"title": "Material",
"description": "Material information displayed for the item.",
"prefill": ""
},
"photo_1": {
"type": "string",
"title": "Primary photo URL",
"description": "Address of the first item photo; used as the record identifier because the source output has no listing ID or item URL field.",
"prefill": "https://images1.vinted.net/t/06_00438_RrWe7MJZ9KuTorjXm9QNbu4U/f800/1788458283.webp?s=76f4541d5477c0c51a34972f769b5c6466a4adcf"
},
"photo_2": {
"type": "string",
"title": "Second photo URL",
"description": "Address of the second item photo when available.",
"prefill": "https://images1.vinted.net/t/02_00d6b_npYwSaLMeHHmgHABoBZdh6A5/f800/1788458283.webp?s=f7c8645a5a120bda002fd8641fc0e69207dc0980"
},
"photo_3": {
"type": "string",
"title": "Third photo URL",
"description": "Address of the third item photo when available.",
"prefill": "https://images1.vinted.net/t/06_01c27_hKGfAszecE1ZxrxCmbDgXSWE/f800/1788458283.webp?s=7e425ab8ae884c8add9c1fdc0979e3757eca6129"
},
"listed_price": {
"type": "string",
"title": "Listed price",
"description": "Item price text displayed on the listing, including its currency symbol.",
"prefill": "9,00€"
},
"buyer_protection_price": {
"type": "string",
"title": "Protected price",
"description": "Price text that includes buyer-protection costs when the source displays it.",
"prefill": ""
},
"buyer_protection": {
"type": "string",
"title": "Buyer protection",
"description": "Buyer-protection message displayed with the listing.",
"prefill": "Inclut la Protection acheteurs"
},
"seller_rating": {
"type": "string",
"title": "Seller rating",
"description": "Seller rating text displayed on the listing.",
"prefill": "5.0"
},
"size": {
"type": "string",
"title": "Size",
"description": "Item size displayed on the listing when available.",
"prefill": ""
},
"title": {
"type": "string",
"title": "Listing title",
"description": "Title displayed for the Vinted listing.",
"prefill": "Lunettes steampunk avec ailes | Vinted"
},
"seller_name": {
"type": "string",
"title": "Seller name",
"description": "Seller display name associated with the listing.",
"prefill": "maddyneko"
},
"condition": {
"type": "string",
"title": "Condition",
"description": "Item condition text displayed on the listing.",
"prefill": "Très bon état"
},
"seller_review_count": {
"type": "string",
"title": "Seller review count",
"description": "Number of seller evaluations as displayed by Vinted.",
"prefill": "78"
}
},
"required": [],
"additionalProperties": false
}連携方法
この App は MCP、API、SDK、ファイルエクスポートのいずれでも連携でき、どのチャネルも同じ能力と料金を共有します。すべてのリクエストは Authorization: Bearer ヘッダーで認証し、認証情報には API Key(長期有効。Open Platform コンソールで作成)を使用します。MCP クライアントは OAuth によるキー不要のログインにも対応しています。CLI や Skill など、さらに多くの連携方法も準備中です。
MCP(Model Context Protocol)を使うと、Claude や Cursor などの AI クライアントからこの App を直接呼び出せます。クライアントと認証方式を選び、下の設定をコピーしてください。
クライアント設定
Bearer の後の値を長期有効な API Key に置き換えてください。あらゆるクライアント、CI、ヘッドレス環境で利用できます。
{
"mcpServers": {
"YiJacobJohnRaku__vinted-data-scraper-by-url": {
"type": "http",
"url": "https://mcp-v2.octoparse.com?pin=YiJacobJohnRaku/vinted-data-scraper-by-url",
"headers": { "Authorization": "Bearer <YOUR_API_KEY>" }
}
}
}AI に設定を任せる
設定を手作業で編集したくない場合は、インストールプロンプトをコピーして任意の AI クライアントに貼り付けてください。AI が自分のやり方でセットアップを完了します(プロンプトは AI があなたに API Key を尋ねる形になっているため、認証情報がチャット履歴や共有設定に残りません)。
detail.access.mcp.composeHint
料金
正常に返されたレコードの件数に応じて課金されます。失敗したタスクには課金されません。
複数の課金イベントはそれぞれ独立して累計されます。詳細は各項目をご覧ください。失敗したタスクには課金されません。
今すぐ試す
パラメータを入力して実行してください。結果は実際の呼び出しによるものです。