Discover/Vinted API
live

Vinted APIvinted.co.uk

Access Vinted UK marketplace data via API. Search listings, get item details, compare prices, and browse categories across second-hand fashion and more.

Endpoint health
verified 1d ago
search_listings
get_listing_detail
get_categories
search_by_keyword_list
get_search_prices
5/5 passing latest checkself-healing
Endpoints
5
Updated
21d ago

What is the Vinted API?

The Vinted UK API provides 5 endpoints for querying live second-hand marketplace listings on vinted.co.uk. Use search_listings to query items by keyword and filter by category, returning fields like price_gbp, condition, brand, and image_url. You can also retrieve individual listing details, pull a fast price summary for any search term, and run batch searches across multiple keywords in a single request.

Try it
Page number for pagination.
Category ID to filter results. Accepted values include 1904 (Women), 5 (Men), 1194 (Electronics), 3054 (Cameras). Use get_categories to retrieve valid IDs.
Search keyword (e.g. 'nike shoes', 'levi jeans').
api.parse.bot/scraper/4134c107-4d58-43bb-bf6d-24a642f27b69/<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/4134c107-4d58-43bb-bf6d-24a642f27b69/search_listings?page=1&category_id=1904&search_text=nike+shoes' \
  -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-co-uk-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.

"""
Vinted UK API - Search and browse second-hand listings

Demonstrates searching listings, fetching details, checking prices,
browsing categories, and batch searching on the Vinted UK marketplace.
"""

from parse_apis.vinted_uk_api import VintedUK, ListingSummary, Listing, Category, BatchSearchResult, ListingNotFound

client = VintedUK()

# Search for nike shoes - limit caps total items fetched
for item in client.listings.search(search_text="nike shoes", limit=5):
    print(item.title, item.price_gbp, item.condition, item.like_count)

# Drill down: get full details from the first search result
first_item = client.listings.search(search_text="camera", limit=1).first()
if first_item:
    detail = first_item.details()
    print(detail.title, detail.brand, detail.price, detail.category, detail.availability)

# Fetch a listing directly by ID with typed error handling
try:
    listing = client.listings.get(item_id="9151806478")
    print(listing.title, listing.description, listing.price, listing.currency)
except ListingNotFound as exc:
    print(f"Listing not found: {exc}")

# Quick price comparison for a search term
for price in client.listings.get_prices(search_text="levi jeans", limit=10):
    print(price)

# Browse available top-level categories
for category in client.listings.list_categories(limit=10):
    print(category.id, category.name)

# Batch search across multiple keywords at once
batch = client.batchsearchresults.search_batch(keywords='["nike", "adidas"]')
print(batch.results)

print("exercised: search / get / details / get_prices / list_categories / search_batch")
All endpoints · 5 totalmissing one? ·

Full-text search over Vinted UK product listings. Returns paginated results with item summaries including price, brand, condition, and image. Each page returns up to ~96 items. Filtering by category_id narrows results to a specific product category (use get_categories for valid IDs).

Input
ParamTypeDescription
pageintegerPage number for pagination.
category_idintegerCategory ID to filter results. Accepted values include 1904 (Women), 5 (Men), 1194 (Electronics), 3054 (Cameras). Use get_categories to retrieve valid IDs.
search_textrequiredstringSearch keyword (e.g. 'nike shoes', 'levi jeans').
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "items": "array of listing summary objects with id, title, brand, price_gbp, currency, url, image_url, condition, like_count",
    "total": "integer total number of items returned on this page"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "id": 9134604641,
          "url": "https://www.vinted.co.uk/items/9134604641-toddler-nike-dunks",
          "brand": "Nike",
          "title": "Toddler Nike dunks",
          "currency": "GBP",
          "condition": "Very good",
          "image_url": "https://images1.vinted.net/t/06_01ca6_vh9GyTWd1NhaBW7CJe3g4sBE/f800/1781054211.webp?s=0875e4a0df1ababd48a89e2a19f079e03eac2da6",
          "price_gbp": "15.13",
          "like_count": 18
        }
      ],
      "total": 96
    },
    "status": "success"
  }
}

About the Vinted API

Search and Filter Listings

search_listings accepts a required search_text parameter plus optional category_id and page inputs. Results come back as an array of item objects including id, title, brand, price_gbp, currency, url, image_url, condition, and like_count, along with a total count for the current page. Use get_categories first to retrieve valid category_id values — it returns an array of objects with integer id and name, covering Vinted's main taxonomy.

Listing Detail and Price Intelligence

get_listing_detail takes a numeric item_id (obtainable from search_listings results) and returns a fuller record: title, description, brand, color, price, currency, condition, category (as a path string), url, and image_url. For quick market scans, get_search_prices accepts a single search_text keyword and returns an array of price strings in 'amount currency' format (e.g. '18.74 GBP') covering the first 10 matching results — useful for fast competitive benchmarking without fetching full listing objects.

Batch Keyword Search

search_by_keyword_list accepts a JSON-encoded array of search terms via the keywords parameter. It returns a results object keyed by each keyword, with each value being an array of matching items containing id, title, brand, price_gbp, and url. This avoids making separate calls when monitoring multiple search terms simultaneously.

Coverage Notes

All endpoints target the Vinted UK storefront (vinted.co.uk) and prices are denominated in GBP. Pagination is supported on search_listings via the page parameter. Seller profile data, buyer/seller messaging, and transaction history are not part of the current endpoint set.

Reliability & maintenanceVerified

The Vinted API is a managed, monitored endpoint for vinted.co.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vinted.co.uk 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.co.uk 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
1d ago
Latest check
5/5 endpoints 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
  • Track resale prices for specific brands (e.g. Nike, Levi's) using get_search_prices to monitor price_gbp trends over time
  • Build a price comparison tool that queries multiple clothing keywords in one call via search_by_keyword_list
  • Aggregate second-hand inventory data by category using get_categories IDs with search_listings filters
  • Enrich a listing database by fetching color, condition, and category path from get_listing_detail using IDs from search results
  • Monitor like_count on search result items to identify high-demand second-hand products
  • Feed a deal-alert system by polling search_listings for a keyword and flagging items below a target price_gbp
  • Catalogue available Vinted UK category taxonomy for mapping to an internal product classification system
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 offer a public developer API. There is no documented API key program or official endpoint reference available for third-party developers on their site.
What does `get_listing_detail` return beyond what appears in search results?+
search_listings returns a concise item object with fields like title, brand, price_gbp, condition, and image_url. get_listing_detail adds color, a full category path string, and the raw price number (separate from the GBP-labelled field), giving you the structured record for a single item in one call.
Does the API cover Vinted marketplaces outside the UK, such as vinted.fr or vinted.de?+
Not currently. All endpoints target vinted.co.uk and return prices in GBP. You can fork this API on Parse and revise it to point at other Vinted country domains if you need listings from France, Germany, or other regional storefronts.
How does pagination work in `search_listings`, and are there limits on how many items are returned?+
The page parameter on search_listings is an optional integer that steps through result pages. The total field in each response reflects the count of items returned on that page, not the overall catalogue count. There is no per_page parameter exposed, so page size is determined by Vinted's default result set.
Does the API return seller profile information such as ratings, location, or number of items listed?+
Not currently. The available endpoints cover listing-level data: item attributes, prices, conditions, categories, and images. Seller profile fields such as ratings, feedback count, or location are not exposed in any current endpoint response. You can fork this API on Parse and revise it to add a seller detail endpoint if that data is required.
Page content last updated . Spec covers 5 endpoints from vinted.co.uk.
Related APIs in MarketplaceSee all →
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.de API
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.
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.
shpock.com API
Search and browse products listed on Shpock.com, view detailed listing information and seller profiles, and explore all available marketplace categories. Find what you're looking for by searching inventory, checking seller histories, and discovering related items from individual merchants.
ebay.co.uk API
Search eBay UK listings and sold items to find products, compare prices, and view seller feedback and ratings. Access detailed item information, explore categories, and discover daily deals all in one place.
etsy.com API
Discover what shoppers are searching for on Etsy by accessing real-time trending keywords and popular search terms that can help you identify market demand and optimize your product listings. Get instant access to autocomplete suggestions and "Popular right now" trends to stay ahead of customer interests and improve your shop's visibility.
amazon.co.uk API
Access data from amazon.co.uk.