# Vinted (Finland) — 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 for secondhand items on Vinted.fi and access detailed listing information, pricing, and seller profiles to find great deals on fashion, electronics, and more. Browse product catalogs and view comprehensive item descriptions and user information to make informed purchasing decisions.

**Category:** Marketplaces | **Website:** [vinted.fi/](https://vinted.fi/) | **Docs:** [parse.bot/marketplace/41abd41a-2f70-4f6e-9535-303f5b2886c8/vinted-fi-api](https://parse.bot/marketplace/41abd41a-2f70-4f6e-9535-303f5b2886c8/vinted-fi-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-fi-api-41abd41a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Get full details of a specific product listing by its numeric ID or full Vinted URL. Returns title, description, brand, price, condition, images, seller info, and product attributes parsed from the item page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_id_or_url` | string | Yes | Numeric item ID (e.g. '8700844677') or full Vinted item URL (e.g. 'https://www.vinted.fi/items/8700844677-...'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vinted-fi-api-41abd41a/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"item_id_or_url":"<string>"}'
```

### get_user_profile

Get user profile information including username, location, followers count, following count, review count, and last active time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `user_id_or_url` | string | Yes | Numeric user ID (e.g. '255704099') or full Vinted member URL (e.g. 'https://www.vinted.fi/member/255704099'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vinted-fi-api-41abd41a/get_user_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_id_or_url":"<string>"}'
```

### search_listings

Search for product listings on Vinted.fi by keyword and optional filters. Returns paginated results from the catalog page. Results include item ID, title, price, size, condition, thumbnail URL, and link.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `catalog_ids` | string | No | Catalog/category IDs to filter by (e.g. '1206' for outerwear/jackets). |
| `order` | string | No | Sort order for results. |
| `page` | integer | No | Page number for pagination. |
| `price_from` | number | No | Minimum price filter in EUR. |
| `price_to` | number | No | Maximum price filter in EUR. |
| `query` | string | No | Search keyword (e.g. 'nike', 'adidas takki') |

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