๐ท Liquor Catalog
A curated liquor catalog with product details, prices, ratings, and reviews. Images are served locally from our CDN โ no external dependencies.
List Brandsโ
Endpoint: GET /liquor/brands
curl https://api.apimitra.in/liquor/brands
{
"status": "ok",
"count": 16,
"brands": [
{"brand": "kingfisher", "products": 10, "categories": 1}
]
}
List Categoriesโ
Endpoint: GET /liquor/categories
curl https://api.apimitra.in/liquor/categories
{
"status": "ok",
"count": 13,
"categories": [
{"category": "Beers", "products": 23}
]
}
List Products (by brand or category)โ
Endpoint: GET /liquor?brand={brand} or GET /liquor?category={category}
| Parameter | Type | Description |
|---|---|---|
brand | string | Brand slug (e.g. kingfisher, fratelli) |
category | string | Category (e.g. beers, whisky, vodka) |
curl "https://api.apimitra.in/liquor?brand=kingfisher"
curl "https://api.apimitra.in/liquor?category=beers"
{
"status": "ok",
"brand": "kingfisher",
"count": 10,
"products": [
{
"id": 82,
"brand": "kingfisher",
"name": "Kingfisher Ultra Witbier Pint",
"volume": "330ML",
"price": "150",
"image": "https://api.apimitra.in/livcheers-img/kingfisher_0.webp"
}
]
}
Search Productsโ
Endpoint: GET /liquor/search?q={term}
curl "https://api.apimitra.in/liquor/search?q=ultra"
Product Detail (per-product endpoint)โ
Endpoint: GET /liquor/product/{id}
curl "https://api.apimitra.in/liquor/product/82"
{
"status": "ok",
"product": {
"id": 82,
"brand": "kingfisher",
"name": "Kingfisher Ultra Witbier Pint",
"volume": "330ML",
"price": "150",
"image": "https://api.apimitra.in/livcheers-img/kingfisher_0.webp",
"category": "Beers",
"sku": "LCIN01193",
"rating": 4.4,
"review_count": 95,
"availability": "In Stock",
"description": "Kingfisher Ultra Witbier in a smaller 330ml can format...",
"reviews": [
{"author": "Poobalan durai", "rating": 4, "body": "Can you deliver."}
]
}
}
Product Imagesโ
Images are served locally and cached for 7 days:
https://api.apimitra.in/livcheers-img/{brand}_{index}.webp
Notesโ
- Prices sorted ascending automatically.
- Responses cached for 10 minutes.
- 120+ products across 16 brands and 13 categories.