No description
Find a file
Powerm1nt 3ed11a9f71
Some checks failed
CI / build (push) Has been cancelled
Upgraded to be compatible with the new vinted-api
2025-02-12 19:14:55 +01:00
.github/workflows Create npm.yml 2021-11-20 11:37:10 +01:00
.gitattributes Initial commit 2021-04-12 20:29:15 +02:00
.gitignore 🙈 Excluded project specific files 2023-04-01 22:36:27 +02:00
index.d.ts Added fetchBrands 2023-04-01 22:37:15 +02:00
index.js Upgraded to be compatible with the new vinted-api 2025-02-12 19:14:55 +01:00
index.test.js Add custom domains 2021-11-20 11:32:23 +01:00
package.json Upgraded to be compatible with the new vinted-api 2025-02-12 19:14:55 +01:00
README.md Add support for URLs 2021-08-24 11:26:57 +02:00
test.js Upgraded to be compatible with the new vinted-api 2025-02-12 19:14:55 +01:00
yarn.lock Fixed api 2023-12-28 17:45:16 +00:00

Vinted API

Simple library that uses the Vinted API to search new posts.

Example

const vinted = require('vinted-api');

vinted.search('https://www.vinted.fr/vetements?brand_id[]=53').then((posts) => {
    console.log(posts); // all the posts that match this query
});