Discover/Whiskybase API
live

Whiskybase APIwhiskybase.com

Access Whiskybase data via API: search whiskies, browse distilleries, check marketplace prices, get new releases, and fetch the Top 1000 ranked bottles.

Endpoint health
verified 14h ago
get_new_releases
get_distilleries
get_distillery_whiskies
get_top_1000_whiskies
search_whiskies
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the Whiskybase API?

The Whiskybase API exposes 6 endpoints covering the full Whiskybase catalogue — from keyword search and distillery browsing to live marketplace listings and the community-voted Top 1000. The get_top_1000_whiskies endpoint alone returns rank, age, strength, rating, and vote count for every bottle that has cleared the 15-vote threshold, giving you a clean, sortable benchmark of community consensus.

Try it
Search keyword to match against whisky names and brands
api.parse.bot/scraper/1fa3ba9e-3cd6-4ffe-b2d7-0da0f2ba5f66/<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/1fa3ba9e-3cd6-4ffe-b2d7-0da0f2ba5f66/search_whiskies?query=Ardbeg' \
  -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 whiskybase-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.

"""Walkthrough: Whiskybase SDK — search, browse, and rank whiskies."""
from parse_apis.whiskybase_api import Whiskybase, DistilleryNotFound

client = Whiskybase()

# Search for whiskies by keyword — limit caps total items fetched.
for whisky in client.whiskies.search(query="Laphroaig", limit=3):
    print(whisky.name, whisky.strength, whisky.rating)

# Browse marketplace listings for a specific brand.
listing = client.listings.search(query="Macallan", limit=1).first()
if listing:
    print(listing.whisky_name, listing.price, listing.seller)

# List distilleries and drill into the first one's whiskies.
distillery = client.distilleries.list(limit=1).first()
if distillery:
    print(distillery.name, distillery.country, distillery.whiskies_count)
    for dw in distillery.whiskies.list(limit=3):
        print(dw.name, dw.strength, dw.rating)

# Typed error handling: catch not-found on an invalid distillery ID.
try:
    bad = client.distillery(id="99999999")
    bad.whiskies.list(limit=1).first()
except DistilleryNotFound as exc:
    print(f"Distillery not found: {exc.distillery_id}")

# Top 1000 ranked whiskies globally.
for ranked in client.rankedwhiskies.list(limit=5):
    print(ranked.rank, ranked.name, ranked.rating, ranked.votes)

print("exercised: whiskies.search / listings.search / distilleries.list / distillery.whiskies.list / rankedwhiskies.list")
All endpoints · 6 totalmissing one? ·

Full-text search over the Whiskybase bottle database. Returns matching whiskies with name, brand, strength, rating, and photo URL. Sorted by relevance. Paginates server-side but this endpoint returns one page of up to 25 results.

Input
ParamTypeDescription
queryrequiredstringSearch keyword to match against whisky names and brands
Response
{
  "type": "object",
  "fields": {
    "items": "array of whisky objects with id, name, brand, display_name, age, strength, bottle_size, vintage_year, bottle_year, rating, url, photo",
    "total": "integer total number of matching results"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": 152827,
          "age": 5,
          "url": "https://www.whiskybase.com/whiskies/whisky/152827",
          "name": "Wee Beastie",
          "brand": "Ardbeg",
          "photo": "https://static.whiskybase.com/storage/whiskies/1/5/2827/366361-normal.png",
          "rating": "83.87",
          "strength": "47.4 %vol",
          "bottle_size": "700 ml",
          "bottle_year": 2020,
          "display_name": "Ardbeg Wee Beastie",
          "vintage_year": null
        }
      ],
      "total": 1502
    },
    "status": "success"
  }
}

About the Whiskybase API

Search and Discovery

The search_whiskies endpoint accepts a keyword — a distillery name, brand, or bottler — and returns an array of matching bottles. Each item includes id, name, brand, display_name, age, strength, bottle_size, vintage_year, bottle_year, rating, and a direct url back to the Whiskybase listing. The total field tells you how many records matched so you can gauge coverage before paginating.

Distilleries and Their Catalogues

get_distilleries returns every distillery on Whiskybase with name, country, and whiskies_count — useful for building a directory or scoping a research project by region. Once you have a distillery ID from that response, pass it to get_distillery_whiskies to pull every bottle associated with that producer, each carrying id, name, age, strength, and rating.

New Releases and Marketplace

get_new_releases lists the latest bottlings across the database. Supply an optional year parameter (e.g. 2024) to narrow results to a specific bottling year; each release object includes bottled, age, strength, size, and rating. For pricing data, get_marketplace_listings returns active buy/sell listings with price, seller, and rating. Pass an optional query string to filter by bottler or distillery name, or omit it to retrieve the most recent listings across the whole market.

Top 1000 Rankings

get_top_1000_whiskies fetches Whiskybase's community ranking. Only bottles with 15 or more community votes are included, so low-sample outliers are filtered out automatically. Response fields are rank, id, name, age, strength, rating, and votes — enough to build leaderboards, track consensus shifts, or benchmark a specific bottle against the broader field.

Reliability & maintenanceVerified

The Whiskybase API is a managed, monitored endpoint for whiskybase.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when whiskybase.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 whiskybase.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
14h 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 whisky price tracker by polling get_marketplace_listings for a specific distillery name over time.
  • Populate a bottle database with distillery-level catalogues using get_distilleries and get_distillery_whiskies in sequence.
  • Generate a 'top-rated this year' newsletter section by combining get_new_releases (filtered by year) with ratings from get_top_1000_whiskies.
  • Run competitive shelf analysis by searching multiple brand names via search_whiskies and comparing average ratings.
  • Build a country-filtered distillery directory using the country field from get_distilleries.
  • Flag newly listed high-rated bottles for auction or investment watchlists by crossing get_marketplace_listings results against get_top_1000_whiskies IDs.
  • Aggregate vintage coverage per distillery by collecting vintage_year and bottle_year fields from search_whiskies results.
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 Whiskybase have an official developer API?+
Whiskybase does not publish an official public developer API. There is no documented REST or GraphQL interface available at whiskybase.com for third-party access.
What does `get_top_1000_whiskies` return and how is the ranking determined?+
The endpoint returns up to 1000 bottles ranked by community consensus on Whiskybase. Each object includes rank, id, name, age, strength, rating, and votes. Only bottles with 15 or more votes are included, so bottles with very few ratings do not appear even if their average score is high.
Can I filter marketplace listings by country, price range, or bottle size?+
Currently the get_marketplace_listings endpoint supports only a keyword query filter; there are no parameters for country, price range, or bottle size. The API covers listing-level fields including price, seller, rating, and whisky_name. You can fork it on Parse and revise it to add those filter parameters if your use case requires them.
Does the API return tasting notes, flavour profiles, or individual user reviews?+
Not currently. Endpoints return structured catalogue data — ratings, ages, strengths, and vote counts — but not free-text tasting notes or per-user review content. You can fork the API on Parse and revise it to add an endpoint targeting individual bottle detail pages where that data appears.
How fresh is the marketplace listing data?+
The get_marketplace_listings endpoint reflects active listings on Whiskybase at the time of the request. Because listings are user-posted and can be added, updated, or removed at any time, the data represents a point-in-time snapshot. Polling at regular intervals is the practical way to detect price changes or new listings for a given bottle.
Page content last updated . Spec covers 6 endpoints from whiskybase.com.
Related APIs in MarketplaceSee 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.
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.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
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.
thecocktaildb.com API
Discover and explore thousands of cocktail recipes by searching by name, ingredient, category, or glass type, plus get random drink suggestions and detailed information about cocktail components. Filter drinks by whether they're alcoholic or non-alcoholic, and browse complete lists of available categories, glasses, and ingredients.
watchbase.com API
Search and explore watches across thousands of brands and collections, discover detailed specifications for watches and mechanical calibers, and retrieve high-quality watch images. Browse curated watch collections by brand or find specific timepieces using advanced search functionality.
cigaraficionado.com API
Search and discover premium cigars with detailed reviews and ratings, browse the latest industry news, and explore Cigar Aficionado's prestigious Top 25 lists. Get comprehensive information about specific cigars including their ratings and reviews to find your next favorite smoke.
blendermarket.com API
Browse and search Blender Market (Superhive) to discover 3D assets, add-ons, and creator tools. Access detailed product information, reviews, FAQs, documentation, and creator profiles. Filter by category, sort results, and explore current sales.