Skip to content

4a-ge/vinted-scraper

Repository files navigation

Vinted Scraper


This module will help you to interact with the Vinted API.

Example :

import VintedScraper from "vinted-scraper"

const vintedScraper = new VintedScraper(); // Or new VintedScraper([ "proxy1:3128:user1:pass" ]) to use proxy.

/**
 * Search for new products.
 */ 
vintedScraper.search("https://vinted.fr/vetements?search_text=pantalon&order=newest_first").then(res => {
  // Do something ...
});

/**
 * Search for user data.
 */ 
vintedScraper.fetchUser(1).then(user => {
  // Do something ...
});

/**
 * Search for item data.
 */
vintedScraper.fetchItem(100000000).then(item => {
  // Do something ...
});


Made with ❤️ by ZyXProFR

About

A module to interact with Vinted API with proxy support.

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors