Discover/Vinted API
live

Vinted APIvinted.it

Retrieve secondhand listings from Vinted.it. Access homepage items and keyword search results with item IDs, names, promotion status, and direct URLs.

Endpoint health
verified 3d ago
get_ads
search_items
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Vinted API?

The Vinted.it API covers 2 endpoints that return secondhand fashion and goods listings from the Italian Vinted marketplace. The get_ads endpoint surfaces items currently visible on the homepage, while search_items accepts a keyword query and returns up to 96 matching catalog items per call. Every item object includes a unique ID, name, promotion flag, and direct listing URL.

Try it

No input parameters required.

api.parse.bot/scraper/e71bdd90-2192-497d-9fdc-eb595d3b28f3/<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/e71bdd90-2192-497d-9fdc-eb595d3b28f3/get_ads' \
  -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-it-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.

from parse_apis.vinted_it_api import Vinted, Item

vinted = Vinted()

# Browse homepage items
for item in vinted.items.list_homepage():
    print(item.id, item.name, item.is_promoted, item.url)

# Search for specific items by keyword
for item in vinted.items.search(query="Nike"):
    print(item.id, item.name, item.is_promoted, item.url)
All endpoints · 2 totalmissing one? ·

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).

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "ads": "array of item objects with id, name, is_promoted, and url",
    "total": "integer count of items returned"
  },
  "sample": {
    "data": {
      "ads": [
        {
          "id": "9136242821",
          "url": "https://www.vinted.it/items/9136242821",
          "name": "Fantastico jeans a gamba larga",
          "is_promoted": false
        },
        {
          "id": "9136228913",
          "url": "https://www.vinted.it/items/9136228913",
          "name": "Giacca NBA vintage",
          "is_promoted": false
        }
      ],
      "total": 18
    },
    "status": "success"
  }
}

About the Vinted API

Endpoints and Response Shape

The get_ads endpoint takes no parameters and returns a snapshot of items currently featured on the Vinted.it landing page — typically 15 to 20 listings. Each entry in the ads array carries four fields: id (the item's unique identifier), name (the listing title as posted by the seller), is_promoted (a boolean indicating whether the item has paid promotion), and url (a direct link to the listing page on vinted.it). The total field gives the count of items in the response.

Searching the Catalog

The search_items endpoint accepts a required query string and returns up to 96 items from the first page of search results. Queries can be single words (scarpe, Nike) or multi-word phrases (vintage borsa, giacca invernale) in any language. The response shape mirrors get_ads: an items array of objects with id, name, is_promoted, and url, plus a total count.

Coverage and Limitations

Both endpoints reflect results from the Italian vinted.it domain only and cover only the first page of results — there is no offset or page parameter to retrieve deeper pages. The is_promoted flag lets you distinguish organically ranked listings from paid ones. Item-level detail fields such as price, condition, size, brand, or seller information are not part of the current response schema.

Reliability & maintenanceVerified

The Vinted API is a managed, monitored endpoint for vinted.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vinted.it 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.it 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
3d ago
Latest check
2/2 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
  • Monitor which item categories or keywords appear most frequently on the Vinted.it homepage using get_ads.
  • Build a resale price research tool by pulling listing names and URLs for a given category keyword via search_items.
  • Detect promoted vs. organic listings to study how promotion affects search placement using the is_promoted flag.
  • Aggregate trending secondhand items across Italian fashion keywords by querying search_items repeatedly.
  • Feed a deal-alert bot that checks whether specific items (by name match) have appeared in fresh homepage listings.
  • Track listing volume for a brand or product category over time using the total field from search_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 developer portal for third-party access to its catalog data.
What does the `is_promoted` field tell me, and can I filter results to only promoted or only organic listings?+
Every item object returned by both get_ads and search_items includes an is_promoted boolean. It distinguishes paid promoted listings from organically ranked ones. The endpoints do not accept a filter parameter to return only one type — filtering must be done client-side on the is_promoted value in the response array.
Can the API return more than the first page of search results?+
search_items returns up to 96 items from the first results page only. There is no page or offset parameter in the current API. You can fork this API on Parse and revise it to add pagination support.
Does the API return item price, condition, size, or seller details?+
Not currently. Both endpoints return id, name, is_promoted, and url per item. Price, condition, size, brand, and seller fields are not exposed. You can fork this API on Parse and revise it to add an item-detail endpoint that returns those fields.
Does this API cover Vinted domains other than vinted.it, such as vinted.fr or vinted.de?+
The API is scoped to the Italian vinted.it domain only. Other national Vinted storefronts are not covered. You can fork this API on Parse and revise it to point at a different regional domain.
Page content last updated . Spec covers 2 endpoints from vinted.it.
Related APIs in MarketplaceSee all →
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.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.
ebay.it API
Search and browse listings on eBay Italy (ebay.it). Retrieve item details, completed/sold listings for price research, and public seller profiles.
zalando.it API
Browse and extract product data from Zalando Italy, including search results, category listings, and full product detail pages.
olx.ua API
Search and browse product listings on OLX.ua. Retrieve listings with pricing, descriptions, seller details, location information, and images across any category. Compare prices and explore current marketplace inventory with flexible keyword and category filters.
euronics.it API
Browse and search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.