# Vinted (Germany) — 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 secondhand items on Vinted.de with customizable filters to find exactly what you're looking for. Get detailed product information including descriptions, categories, colors, and pricing to make informed purchasing decisions.

**Category:** Marketplaces | **Website:** [vinted.de/](https://vinted.de/) | **Docs:** [parse.bot/marketplace/bb13bc4d-749e-48c6-9501-14b05595d28d/vinted-de-api](https://parse.bot/marketplace/bb13bc4d-749e-48c6-9501-14b05595d28d/vinted-de-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-de-api-bb13bc4d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_item_detail

Get detailed product information including full description, category, color, and condition. Uses the item's URL path or ID to fetch the product page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_id` | string | No | Item ID (numeric). If item_path is unknown, provide the full item_path instead. |
| `item_path` | string | No | Full item URL path, e.g. '/items/<item_id>-<item-slug>'. Obtain this from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vinted-de-api-bb13bc4d/get_item_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"item_id":"<string>","item_path":"<string>"}'
```

### search_products

Search or browse the Vinted catalog. Returns product listings with price, brand, size, condition, photos, seller info, and engagement metrics. Supports pagination, price range filters, sorting, and category/brand filtering. Results are capped at 960 total entries by the upstream API regardless of actual catalog depth.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand_ids` | string | No | Comma-separated brand IDs to filter by. |
| `catalog_ids` | string | No | Comma-separated catalog/category IDs to filter by. |
| `order` | string | No | Sort order for results. |
| `page` | integer | No | Page number (1-indexed). |
| `per_page` | integer | No | Number of results per page (max 96). |
| `price_from` | string | No | Minimum price filter in EUR. |
| `price_to` | string | No | Maximum price filter in EUR. |
| `query` | string | No | Search text to find products (e.g., 'Nike shoes'). Leave empty to browse all listings. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vinted-de-api-bb13bc4d/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand_ids":"<string>","catalog_ids":"<string>","order":"<string>","page":"<integer>","per_page":"<integer>","price_from":"<string>","price_to":"<string>","query":"<string>"}'
```
