Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Androz2091/vinted-api

JavaScript library to interact with the Vinted API
https://github.com/Androz2091/vinted-api

Last synced: 3 months ago
JSON representation

JavaScript library to interact with the Vinted API

Awesome Lists containing this project

README

        

# Vinted API

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

## Example

```js
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
});
```