📷
Scan any bottle
Point your camera at a label and DramLog reads the name, distillery, region, ABV, and age automatically.
Log every dram, photograph your bottles, discover new expressions, and build your personal whisky collection — all in one place.
Point your camera at a label and DramLog reads the name, distillery, region, ABV, and age automatically.
Rate each pour, add tasting notes, record the serving style and venue. Your full whisky history in one place.
Backgrounds are removed automatically so your collection photos look sharp and consistent.
Search a growing community-built database of whiskies from Scotland, Ireland, Japan, the US, and beyond.
Your check-ins belong to you. The whisky database is public — your personal tasting notes are not.
Every bottle added by the community is available via the free public API. No account or key required.
As DramLog users log bottles, the database grows. All whisky data is freely queryable — no account, no API key, no rate limits (fair use applies).
/whiskiesReturns a paginated list of whiskies.
q — Search name or distillerycountry — Filter by country (e.g. Scotland)region — Filter by region (e.g. Islay, Speyside)page — Page number, default 1limit — Results per page, default 20, max 100// GET https://nzopuawtbskeanljyonb.supabase.co/functions/v1/public-api/whiskies?q=lagavulin&limit=2
{
"data": [
{
"id": "a1b2c3d4-...",
"name": "16 Year Old",
"distillery": "Lagavulin",
"region": "Islay",
"country": "Scotland",
"age": 16,
"abv": 43.0,
"bottle_size": 700,
"image_url": "https://...",
"slug": "lagavulin-16-year-old",
"created_at": "2026-01-15T10:30:00Z"
}
],
"meta": { "page": 1, "limit": 2, "total": 1, "pages": 1 }
}/whiskies/:idReturns a single whisky by its UUID. Returns 404 if not found.
// GET https://nzopuawtbskeanljyonb.supabase.co/functions/v1/public-api/whiskies/:id
{
"id": "a1b2c3d4-e5f6-...",
"name": "16 Year Old",
"distillery": "Lagavulin",
"region": "Islay",
"country": "Scotland",
"age": 16,
"abv": 43.0,
"bottle_size": 700,
"image_url": "https://...",
"slug": "lagavulin-16-year-old",
"created_at": "2026-01-15T10:30:00Z"
}idUUID — stable identifiernameExpression name (e.g. "12 Year Old", "Double Wood")distilleryDistillery nameregionWhisky region — may be nullcountryCountry of origin — may be nullageAge in years as integer, null for NASabvAlcohol by volume as float — may be nullbottle_sizeVolume in ml (e.g. 700) — may be nullimage_urlBottle photo with background removed — may be nullslugURL-safe identifiercreated_atISO 8601 timestampLast updated: May 2026
Your account and associated data are retained as long as your account is active. You can request deletion at any time.
You can request a copy of your data or ask us to delete your account by emailing thedramlog@gmail.com.