# Vinted (Italy) — 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.

> Browse and search secondhand listings on Vinted.it to retrieve product names, IDs, and direct URLs. Access homepage listings and search results in real-time.

**Category:** Marketplaces | **Website:** [vinted.it/](https://vinted.it/) | **Docs:** [parse.bot/marketplace/dd1edd00-0d96-4c44-8ae9-fe093c344f07/vinted-it-api](https://parse.bot/marketplace/dd1edd00-0d96-4c44-8ae9-fe093c344f07/vinted-it-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-it-api-dd1edd00/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_ads

Retrieve items currently listed on the Vinted.it homepage. Returns recently listed or featured items visible on the landing page. No pagination — returns a single page of the most recent items (typically 15-20).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vinted-it-api-dd1edd00/get_ads \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_items

Search for items on Vinted.it by keyword. Supports single and multi-word queries in any language. Returns matching catalog items from the first page of results (typically up to 96 items). Items include id, name, promotion status, and direct URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword or phrase (e.g. 'Nike', 'vintage borsa', 'scarpe') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vinted-it-api-dd1edd00/search_items \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
