Discover/vivino.com API
live

vivino.com APIvivino.com

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

Endpoints
6
Updated
10d ago
Try it
Page number (0-indexed).
Max results per page.
Search keyword (wine name, grape variety, region, 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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/0573a298-2c9e-48ad-98ad-08cd6f65e3e4/search_wines?limit=5&query=pinot+noir' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Search for wines by name, style, or region using the Algolia search index. Returns paginated results with wine details including name, region, winery, vintages, and ratings.

Input
ParamTypeDescription
pageintegerPage number (0-indexed).
limitintegerMax results per page.
queryrequiredstringSearch keyword (wine name, grape variety, region, 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": 1136137,
          "name": "Pinot Noir",
          "region": {
            "id": 24,
            "name": "California",
            "country": "us"
          },
          "winery": {
            "id": 199777,
            "name": "Meiomi",
            "seo_name": "meiomi"
          },
          "type_id": 1,
          "seo_name": "pinot-noir",
          "statistics": {
            "ratings_count": 185231,
            "ratings_average": 4.1
          }
        }
      ],
      "page": 0,
      "nbHits": 71226,
      "nbPages": 200,
      "hitsPerPage": 5
    },
    "status": "success"
  }
}

About the vivino.com 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.

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.

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,000250 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 →
publix.com API
Access Publix grocery store data including product search, pricing, promotions, weekly ad deals, store locations, and category browsing.
pedidosya.com.ar API
Browse restaurants and menus available in Argentine cities through PedidosYa, search for specific restaurants by name or food category, and retrieve complete menu offerings including items, prices, and available options.
thefork.it API
Search and discover Italian restaurants by cuisine, location, or ratings, then access detailed information like menus, reviews, and availability across major cities in Italy. Find top-rated dining options and compare restaurant details to plan your perfect meal.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
opentable.com API
Search for restaurants across the US with ratings, reviews, photos, and pricing information, plus get real-time availability and autocomplete suggestions as you type. Check reservation openings and explore detailed restaurant features to find and book your perfect dining experience.
opentable.ca API
Search and discover restaurants on OpenTable, view detailed information like menus and reviews, and check real-time dining availability across metro areas. Find top-rated restaurants in your location and instantly see which tables are open for your preferred date and time.
deliveroo.co.uk API
Search for restaurants and retrieve menus from Deliveroo UK. Look up restaurants by keyword and postcode, or fetch full menu details for any Deliveroo restaurant by URL.
sainsburys.co.uk API
Access Sainsbury's grocery catalogue: search products by keyword, browse the full category hierarchy, retrieve detailed product information, and discover trending searches.