Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/Androz2091/vinted-api
- Owner: Androz2091
- Created: 2021-04-13T11:22:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-24T14:45:05.000Z (11 months ago)
- Last Synced: 2024-10-26T20:47:38.007Z (3 months ago)
- Language: JavaScript
- Size: 91.8 KB
- Stars: 87
- Watchers: 8
- Forks: 34
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
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
});
```