Discover/Vinted API
live

Vinted APIvinted.de

Access Vinted.de listings via API. Search by keyword, price, brand, and category. Retrieve full product details including condition, color, and seller info.

Endpoint health
verified 2d ago
search_products
1/1 passing latest checkself-healing
Endpoints
2
Updated
22d ago

What is the Vinted API?

The Vinted.de API exposes 2 endpoints for searching and retrieving secondhand product listings from the German Vinted marketplace. The search_products endpoint returns up to 96 items per page, each including price, brand, size, condition, photos, seller info, and engagement metrics. The get_item_detail endpoint provides granular data per listing: full description, color, category, and condition.

Try it
Page number (1-indexed).
Sort order for results.
Search text to find products (e.g., 'Nike shoes'). Leave empty to browse all listings.
Number of results per page (max 96).
Maximum price filter in EUR.
Comma-separated brand IDs to filter by.
Minimum price filter in EUR.
Comma-separated catalog/category IDs to filter by.
api.parse.bot/scraper/16ff8198-b96a-4b20-912b-c81c74b39bc7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/16ff8198-b96a-4b20-912b-c81c74b39bc7/search_products?page=1&order=relevance&query=Nike&per_page=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace vinted-de-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Vinted SDK — search the marketplace, filter by price and brand."""
from parse_apis.vinted_product_search_api import Vinted, Sort, SearchFailed

client = Vinted()

# Search for Nike products sorted by price, capped at 5 total items.
for product in client.catalogs.search(query="Nike", order=Sort.PRICE_LOW_TO_HIGH, limit=5):
    print(product.title, product.price, product.currency, product.size)

# Drill-down: take one result and inspect seller info.
product = client.catalogs.search(query="Adidas shoes", limit=1).first()
if product:
    print(product.title, product.total_price, product.status)
    print(product.user.login, product.user.business)

# Typed error handling around a search call.
try:
    results = client.catalogs.search(query="vintage jacket", price_from="10", price_to="50", limit=3)
    for item in results:
        print(item.brand, item.title, item.favourite_count)
except SearchFailed as exc:
    print(f"Search failed: {exc}")

print("exercised: catalogs.search with sort / price filters / seller access")
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerPage number (1-indexed).
orderstringSort order for results.
querystringSearch text to find products (e.g., 'Nike shoes'). Leave empty to browse all listings.
per_pageintegerNumber of results per page (max 96).
price_tostringMaximum price filter in EUR.
brand_idsstringComma-separated brand IDs to filter by.
price_fromstringMinimum price filter in EUR.
catalog_idsstringComma-separated catalog/category IDs to filter by.
Response
{
  "type": "object",
  "fields": {
    "items": "array of product objects with id, title, url, price, currency, service_fee, total_price, brand, size, status, promoted, favourite_count, view_count, main_photo, photo_urls, and user info",
    "per_page": "integer, number of results per page",
    "total_pages": "integer, total number of pages available",
    "current_page": "integer, current page number",
    "total_entries": "integer, total number of matching entries"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": 9074370874,
          "url": "https://www.vinted.de/items/9074370874-nike-pullover",
          "size": "S / 36 / 8",
          "user": {
            "id": 46388594,
            "login": "marit_ply",
            "business": false,
            "profile_url": "https://www.vinted.de/member/46388594-maritply"
          },
          "brand": "Nike",
          "price": "5.0",
          "title": "Nike Pullover",
          "status": "Gut",
          "currency": "EUR",
          "promoted": true,
          "main_photo": "https://images1.vinted.net/t/05_00fa6_example/f800/1780473927.webp",
          "photo_urls": [
            "https://images1.vinted.net/t/05_00fa6_example/f800/1780473927.webp"
          ],
          "view_count": 0,
          "service_fee": "0.95",
          "total_price": "5.95",
          "favourite_count": 15
        }
      ],
      "per_page": 3,
      "total_pages": 320,
      "current_page": 1,
      "total_entries": 960
    },
    "status": "success"
  }
}

About the Vinted API

Search and Browse Listings

The search_products endpoint accepts a free-text query (e.g. 'Adidas Jacke') alongside structured filters: price_from and price_to in EUR, brand_ids as comma-separated IDs, and catalog_ids to narrow by category. Results are paginated via page and per_page (max 96 per page), and sortable with the order parameter using values like newest_first, price_low_to_high, or relevance. Each item in the response carries id, title, url, price, currency, service_fee, total_price, brand, size, status, promoted, and favourite_count. The pagination object in the response exposes current_page, total_pages, total_entries, and per_page for reliable cursor management.

Product Detail Retrieval

The get_item_detail endpoint accepts either an item_id (numeric string) or a full item_path such as /items/123456789-nike-air-max. The item_path format is returned directly in search_products results, making it straightforward to chain the two endpoints. The detail response includes name, brand, color, image, price, currency, category, condition, and description — fields absent from the search result objects.

Data Coverage

All pricing fields are denominated in EUR, reflecting Vinted.de's German marketplace. The service_fee and total_price fields in search results allow downstream applications to display buyer-facing costs without extra calculation. Condition is returned as a string (e.g. 'Sehr gut' / 'Neu mit Etikett') as shown on the listing itself.

Reliability & maintenanceVerified

The Vinted API is a managed, monitored endpoint for vinted.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vinted.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official vinted.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a price tracker for specific brands using brand_ids and price_from/price_to filters in search_products
  • Aggregate secondhand fashion inventory by category using catalog_ids to power a resale comparison tool
  • Monitor new listings for a keyword with order: newest_first and paginate through results using the pagination object
  • Enrich search results with full item descriptions and color data by chaining get_item_detail using item_path from search output
  • Calculate true buyer cost by exposing service_fee and total_price alongside the base price per listing
  • Build a condition-based filter layer using the condition field from get_item_detail for buyers who only want near-new items
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Vinted have an official public developer API?+
Vinted does not publish a public developer API or documentation for third-party access to its marketplace data. This Parse API provides structured access to Vinted.de listing and product data.
What does `search_products` return beyond the item price?+
Each item object includes service_fee and total_price in addition to the base price, so you can display buyer-facing totals directly. It also returns brand, size, status, promoted, and favourite_count per listing. Full description and color are only available via get_item_detail.
How do I get detailed fields like color and description from a search result?+
The search_products response includes a url field (and implicitly the item path) for each listing. Pass that path as item_path to get_item_detail to retrieve color, description, category, condition, and the full image URL.
Does the API cover seller profiles or transaction/review data?+
Not currently. The API covers product listings via search_products and item-level detail via get_item_detail, including seller info embedded in search results. Standalone seller profiles, feedback scores, and transaction history are not exposed as separate endpoints. You can fork this API on Parse and revise it to add a seller profile endpoint.
Is pagination reliable for large result sets?+
The pagination object returns total_pages and total_entries so you can determine the full result set size before iterating. The per_page parameter caps at 96 per request. For very broad queries, total_entries can be large; apply catalog_ids or brand_ids filters to narrow results to a manageable set.
Page content last updated . Spec covers 2 endpoints from vinted.de.
Related APIs in MarketplaceSee all →
vinted.fr API
Search and browse secondhand product listings on Vinted.fr with flexible filtering by price, category, and condition to find the items you're looking for. Sort results by relevance, price, or newest listings and navigate through pages to discover available products on the marketplace.
vinted.it API
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.
vinted.fi API
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.
vinted.co.uk API
Search and browse Vinted UK listings to compare prices, view detailed product information, and track pricing trends across categories. Get instant access to live marketplace data including search results, item details, and price intelligence for competitive shopping analysis.
adidas.de API
Search and browse Adidas products on adidas.de to find detailed information about items, availability, pricing, and specific categories. Get comprehensive product details including size availability and stock levels across the German Adidas store.
thredup.com API
Search and browse ThredUp's secondhand fashion inventory to find specific items and view detailed product information like pricing, condition, and sizing. Get smart search suggestions to discover similar styles and refine your thrifting experience.
en.zalando.de API
Browse Zalando's product catalog to find items by category or search, view detailed product information including prices and descriptions, and discover available brands and search suggestions. Get instant access to Zalando's inventory data to compare products, prices, and availability across fashion and lifestyle categories.
ebay.de API
Search eBay.de listings with flexible filters to find the products you want, view detailed item information, and check seller feedback ratings to make informed buying decisions. Track sold items and monitor pricing trends across any category.