Vinted Listing Details Scraper
Provide Vinted listing-page URLs and receive item, seller, price, condition, shipping, and image details.
Aperçu
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.
Périmètre et limites
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.
- Adapté pour
- 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
- À ne pas utiliser pour
- 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
Gestion des échecs
Comportement en cas d'échec et de nouvelle tentative déclaré par l'auteur. Nous vous recommandons de l'inclure dans votre prompt système lors de l'intégration.
- 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
Entrée
Paramètres requis pour appeler cette App, générés à partir de l'input.schema du manifest.json.
| Champ | Nom métier | Type | Requis | Défaut | Énum / Contraintes | Exemple | Description |
|---|---|---|---|---|---|---|---|
| listing_page_urls | Vinted listing page URLs | array<string> | Oui | — | jusqu'à 10000 éléments | ["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. |
Sortie
Structure des champs d'un enregistrement, générée à partir de l'output.schema du manifest.json.
| Champ | Nom métier | Type | Exemple | Description |
|---|---|---|---|---|
| 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 de l'enregistrement
La sortie est renvoyée enregistrement par enregistrement. 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
}Intégration
Cette App peut être intégrée via MCP, API, SDK ou export de fichiers — tous les canaux partagent les mêmes capacités et la même tarification. Chaque requête s'authentifie avec l'en-tête Authorization: Bearer à l'aide d'une API Key (longue durée, créée dans la console Open Platform) ; les clients MCP peuvent aussi se connecter via OAuth, sans clé. D'autres options comme la CLI et Skill arrivent bientôt.
Avec MCP (Model Context Protocol), vous pouvez appeler cette App directement depuis des clients IA comme Claude et Cursor. Choisissez votre client et votre mode d'authentification, puis copiez la config ci-dessous.
Config du client
Remplacez la valeur après Bearer par votre API Key longue durée. Fonctionne dans n'importe quel client, en CI ou en environnement sans navigateur.
{
"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>" }
}
}
}Laissez l'IA tout configurer pour vous
Vous ne voulez pas modifier les configs à la main ? Copiez le prompt d'installation et collez-le dans n'importe quel client IA — il effectuera la configuration à sa manière. (Le prompt demande à l'IA de vous réclamer votre API Key, afin que les identifiants ne finissent jamais dans l'historique de conversation ni dans des configs partagées.)
detail.access.mcp.composeHint
Tarifs
Facturé selon le nombre d'enregistrements renvoyés avec succès. Les tâches échouées ne sont pas facturées.
Plusieurs événements de facturation se cumulent indépendamment — voir chaque élément pour les détails. Les tâches échouées ne sont pas facturées.
Essayer maintenant
Renseignez les paramètres et lancez l'exécution — les résultats proviennent d'un appel réel.