Discover/Vivino API
live

Vivino APIvivino.com

Search wines, wineries, and food pairings from Vivino via 6 endpoints. Returns ratings, vintages, regions, descriptions, and winery profiles.

Endpoint health
verified 5d ago
search_wines
explore_wines
get_winery_details
search_wineries
get_wine_details
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the Vivino API?

The Vivino API provides access to wine and winery data across 6 endpoints, covering search, catalog browsing, detailed wine profiles, and food pairings. Using search_wines, you can query by name, grape variety, or region and receive structured results including ratings averages, vintage arrays, and winery metadata. Companion endpoints like get_wine_details and get_winery_details return deeper fields such as food pairings, grapes, winemaker names, and region statistics.

Try it
Page number (0-indexed).
Max results per page.
Search keyword (wine name, grape variety, region, winery, etc.).
api.parse.bot/scraper/0573a298-2c9e-48ad-98ad-08cd6f65e3e4/<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/0573a298-2c9e-48ad-98ad-08cd6f65e3e4/search_wines?page=0&limit=5&query=malbec' \
  -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 vivino-com-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.vivino_wine_api import Vivino, Wine, Winery, WineNotFound

vivino = Vivino()

# Search for Malbec wines and browse results
for wine in vivino.wines.search(query="malbec"):
    print(wine.name, wine.statistics.ratings_average, wine.region.name)

# Get detailed info about a specific wine
detail = vivino.wines.get(wine_id="1135067")
print(detail.name, detail.description, detail.winery.name)

# Explore popular wines from the catalog
for wine in vivino.wines.explore():
    print(wine.name, wine.winery.name, wine.statistics.ratings_count)

# Find wines related to a food keyword
for wine in vivino.wines.food_pairing(food_name="steak"):
    print(wine.name, wine.region.country)

# Search for wineries by name
for winery in vivino.wineries.search(query="penfolds"):
    print(winery.name, winery.website, winery.statistics.wines_count)

# Get winery details by slug
winery_detail = vivino.wineries.get(winery_slug="penfolds")
print(winery_detail.name, winery_detail.winemaker, winery_detail.region.name)
All endpoints · 6 totalmissing one? ·

Full-text search over Vivino's wine catalog. Matches wine name, grape variety, region, and winery name. Returns paginated results ordered by relevance with full wine details including name, region, winery, vintages, ratings, and description.

Input
ParamTypeDescription
pageintegerPage number (0-indexed).
limitintegerMax results per page.
queryrequiredstringSearch keyword (wine name, grape variety, region, winery, etc.).
Response
{
  "type": "object",
  "fields": {
    "hits": "array of wine objects with id, name, seo_name, region, winery, vintages, statistics, description",
    "page": "current page number (0-indexed)",
    "nbHits": "total number of matching wines",
    "nbPages": "total number of pages",
    "hitsPerPage": "number of results per page"
  },
  "sample": {
    "data": {
      "hits": [
        {
          "id": 1135980,
          "name": "Reserve Malbec",
          "region": {
            "id": 454,
            "name": "Mendoza",
            "country": "ar"
          },
          "winery": {
            "id": 4137,
            "name": "Trivento",
            "seo_name": "trivento"
          },
          "type_id": 1,
          "seo_name": "reserve-malbec",
          "vintages": [
            {
              "id": 1527219,
              "name": "Trivento Reserve Malbec",
              "year": "U.V.",
              "statistics": {
                "ratings_count": 105754,
                "ratings_average": 3.7
              }
            }
          ],
          "statistics": {
            "ratings_count": 105754,
            "ratings_average": 3.7
          }
        }
      ],
      "page": 0,
      "nbHits": 32633,
      "nbPages": 42,
      "hitsPerPage": 24
    },
    "status": "success"
  }
}

About the Vivino API

Wine Search and Catalog

The search_wines endpoint accepts a query string — wine name, grape variety, or region — and returns paginated results with fields including id, name, seo_name, region, winery, vintages, statistics, and description. Pagination is 0-indexed via the page parameter, and nbHits and nbPages give you the full result-set shape. The explore_wines endpoint browses the full catalog ordered by popularity without a query term, using a 1-indexed page input that maps internally to 0-indexed pagination.

Wine and Winery Detail

get_wine_details takes either a wine_id (e.g. '1135067') or a wine_slug (e.g. 'cabernet-sauvignon-reserva-central-valley'). The response includes the image object with URL variations, a vintages array with per-year names and statistics, a winery object with website and description, and a statistics object covering ratings_count, ratings_average, and labels_count. get_winery_details requires a winery_slug (e.g. 'penfolds' or 'opus-one') and returns winery-level fields including winemaker, region, website, and aggregate statistics across all their wines.

Winery Search and Food Pairings

search_wineries accepts a winery name query and returns an items array of unique winery objects — each with id, name, seo_name, statistics, region, description, and website. The get_food_pairings endpoint takes a food_name string such as 'steak' or 'pasta' and returns wine objects whose names or associated metadata match that term, giving the same paginated hit structure as the search endpoints.

Coverage Notes

All endpoints return data as structured objects rather than free-form text, making the responses straightforward to parse into typed models. The statistics object appears at multiple levels — wine, vintage, winery, and region — so you can aggregate or filter at whichever granularity your application needs. Wine type_id is returned as an integer identifier; a mapping to human-readable type names (e.g. red, white, sparkling) is not included in the response schema directly.

Reliability & maintenanceVerified

The Vivino API is a managed, monitored endpoint for vivino.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vivino.com 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 vivino.com 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
5d ago
Latest check
6/6 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
  • Build a wine recommendation engine using search_wines filtered by region and sorted by ratings_average.
  • Populate a wine cellar tracker by fetching full vintage arrays via get_wine_details.
  • Create a food-and-wine pairing tool using get_food_pairings with ingredients from a recipe.
  • Display winery profiles in a travel app using get_winery_details fields like winemaker, website, and region.
  • Index a wine catalog for autocomplete search by paginating through explore_wines sorted by popularity.
  • Compare winery statistics across producers using search_wineries to retrieve ratings_count and wines_count.
  • Generate SEO content pages for wine varieties by pulling description, grapes, and statistics from get_wine_details.
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 Vivino have an official public developer API?+
Vivino does not offer a publicly documented developer API for third-party use. There is no official API portal or published endpoint reference available to external developers.
What does `get_wine_details` return beyond basic wine info?+
In addition to name and region, it returns a vintages array with per-year statistics, an image object with multiple URL variations, a winery object that includes the winery's website and description, and a statistics block with ratings_count, ratings_average, and labels_count. Food pairings and grape data are also included in the response.
How does pagination work across the search and explore endpoints?+
search_wines, search_wineries, and get_food_pairings use 0-indexed pagination via the page parameter. explore_wines accepts a 1-indexed page input. All paginated responses include nbHits, nbPages, and hitsPerPage so you can iterate through the full result set.
Does the API return individual user reviews or tasting notes?+
Not currently. The API returns aggregate statistics (ratings_count, ratings_average) and structured descriptions at the wine and winery level, but individual user reviews and tasting notes are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting per-wine review data.
Does the API return current retail pricing or where to buy a wine?+
Not currently. The endpoints cover ratings, vintages, region data, winery profiles, and food pairings, but real-time retail prices and merchant availability are not included in any response. You can fork this API on Parse and revise it to add a pricing or merchant lookup endpoint.
Page content last updated . Spec covers 6 endpoints from vivino.com.
Related APIs in Food DiningSee all →
wine.com API
Search and browse wines on Wine.com to discover detailed information including pricing, ratings, and product metadata across thousands of selections. Find top-rated wines, browse current sales, and access comprehensive details on any wine to make informed purchasing decisions.
winecompanion.com.au API
Browse and explore Australian wineries from Wine Companion's comprehensive directory, including contact details, ratings, and regional locations. Search and filter by state, region, or facilities to find wineries across Australia.
raisin.digital API
Search and discover natural wine bars, restaurants, wine shops, winemakers, and events from the Raisin.digital guide. Browse venues on an interactive map to find natural wine experiences near you.
whiskybase.com API
Search and discover whiskies from a comprehensive database, explore new releases, check marketplace prices and listings, and browse distilleries and their collections. Get instant access to top-rated whiskies, distillery information, and current market data all in one place.
systembolaget.se API
Search and browse Systembolaget's complete beverage catalog to discover wines, spirits, and other drinks with detailed information like taste profiles, producer details, vintage year, and pricing. Find exactly what you're looking for by filtering products by type, region, and other characteristics 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.
beveragetradenetwork.com API
Search beverage industry brands, discover buying leads and supplier contacts, compare membership pricing, and browse a comprehensive company directory to grow your beverage business network. Access real-time competition results from beverage industry rankings to stay informed on market standings.
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.