# Vinted (Poland) — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse second-hand clothing listings on Vinted Poland to find affordable pre-owned items based on your preferences. Filter through available inventory on vinted.pl to discover deals on fashion and accessories from individual sellers.

**Category:** Marketplaces | **Website:** [www.vinted.pl/](https://www.vinted.pl/) | **Docs:** [parse.bot/marketplace/36f8964a-6812-41aa-a3d1-e408341332d7/vinted-pl-api](https://parse.bot/marketplace/36f8964a-6812-41aa-a3d1-e408341332d7/vinted-pl-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-vinted-pl-api-36f8964a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_listings

Search Vinted.pl listings by keyword with optional filters for price, condition, brand, and sort order. Returns paginated results. Each request makes one API call to Vinted's catalog; pagination is controlled by the page and per_page parameters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Brand name to filter by (e.g. 'Nike', 'Adidas', 'Zara'). Resolved to a brand ID via Vinted's brand search; the first exact case-insensitive match is used. |
| `condition` | string | No | Filter by item condition. Omitted returns all conditions. |
| `keyword` | string | Yes | Search text to find listings (e.g. 'nike', 'dress', 'adidas shoes'). |
| `max_price` | string | No | Maximum price filter in PLN. Only listings at or below this price are returned. Numeric string (e.g. '100', '50.5'). |
| `order` | string | No | Sort order for results. |
| `page` | integer | No | Page number for pagination (starts at 1). |
| `per_page` | integer | No | Number of listings per page (1-96). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vinted-pl-api-36f8964a/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","condition":"<string>","keyword":"<string>","max_price":"<string>","order":"<string>","page":"<integer>","per_page":"<integer>"}'
```
