zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Food & Drink/Punch Drink
Logo Punch Drink

Punch Drink

Cocktail & drink recipe scraper untuk Punch Drink — cari resep cocktail, ambil detail (bahan, cara, garnish), dan koleksi terbaru.

Endpoints
3
Requests
6
Updated
3 months ago
For LLMs
llms.txt
Endpoint health12 hours ago
  • searchpassing, 0.9s
  • detailpassing, 0.1s
  • latestpassing, 0.6s
3/3 passingdaily 01:00 WIB

Playground

3 endpoints
GET/v1/food:punchdrink/search3m cache2 paramschecking key…
Parameters
querystringrequired

Cocktail / drink keyword

pagenumber

Page number (default 1, max 50)

·
Response
EXAMPLE
{
  "page": 1,
  "count": 10,
  "items": [
    {
      "url": "https://punchdrink.com/recipes/dirty-gin-tonic/",
      "title": "Dirty Gin & Tonic",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "Salty gin and some olive brine make this the warm-weather drink for dirty Martini fans."
    },
    {
      "url": "https://punchdrink.com/recipes/gin-coco-no-2/",
      "title": "Gin Coco No. 2",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "Tropical, creamy, herbal, spicy—this cocktail ticks all the boxes."
    },
    {
      "url": "https://punchdrink.com/recipes/gin-it/",
      "title": "Gin & It",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "A lesser-known gin classic from the 1970s."
    },
    {
      "url": "https://punchdrink.com/recipes/harrison-ginsbergs-martini/",
      "title": "Harrison Ginsberg’s Martini",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "In this winning Martini recipe,  a few simple ingredients come together in precisely the right proportions."
    },
    {
      "url": "https://punchdrink.com/recipes/gin-sonic/",
      "title": "Gin Sonic",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "Japan’s very own Gin & Tonic."
    },
    {
      "url": "https://punchdrink.com/recipes/harrison-ginsbergs-martinez/",
      "title": "Harrison Ginsberg’s Martinez",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "A modern take splits the base between Old Tom and London dry gins."
    },
    {
      "url": "https://punchdrink.com/recipes/gin-pahit/",
      "title": "Sling Bar's Gin Pahit",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "A simplified version of the pared-back Malaysian classic."
    },
    {
      "url": "https://punchdrink.com/recipes/harrison-ginsberg-white-negroni/",
      "title": "Harrison Ginsberg’s White Negroni",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "A winning recipe that adds a splash of verjus for extra brightness."
    },
    {
      "url": "https://punchdrink.com/recipes/maison-premieres-ramos-gin-fizz-cocktail-recipe/",
      "title": "Maison Premiere's Ramos Gin Fizz",
      "author": "Talia Baiocchi",
      "source": "punchdrink.com",
      "summary": "A winning recipe for the New Orleans classic."
    },
    {
      "url": "https://punchdrink.com/articles/mastering-the-gin-rickey-cocktail-recipe-with-aj-johnson/",
      "image": "https://punchdrink.com/wp-content/uploads/2021/09/Thumb-Gin-Rickey-Cocktail-Recipe-Andra-AJ-Johnson-Serenata-Washington-DC.jpg",
      "title": "Mastering the Gin Rickey with Andra “AJ” Johnson",
      "author": "Laurel Miller",
      "source": "punchdrink.com",
      "summary": "The D.C. bartender elevates the city's hometown highball with a vibrant, aromatic citrus syrup."
    }
  ],
  "hasMore": false
}

Code examples

Search
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("food:punchdrink", "search", {
  "query": "gin",
  "page": 1
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/food:punchdrink/search?query=gin&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

3 endpoints · plain text
GETSearch/v1/food:punchdrink/searchCari resep berdasarkan keyword dengan pagination.

Parameters

querystringrequired
Cocktail / drink keyword
pagenumberoptional
Page number (default 1, max 50)

Request

curl -X GET "https://api.zpi.web.id/v1/food:punchdrink/search?query=gin&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "url": "https://punchdrink.com/recipes/dirty-gin-tonic/",
      "title": "Dirty Gin & Tonic",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "Salty gin and some olive brine make this the warm-weather drink for dirty Martini fans."
    },
    {
      "url": "https://punchdrink.com/recipes/gin-coco-no-2/",
      "title": "Gin Coco No. 2",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "Tropical, creamy, herbal, spicy—this cocktail ticks all the boxes."
    },
    {
      "url": "https://punchdrink.com/recipes/gin-it/",
      "title": "Gin & It",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "A lesser-known gin classic from the 1970s."
    },
    {
      "url": "https://punchdrink.com/recipes/harrison-ginsbergs-martini/",
      "title": "Harrison Ginsberg’s Martini",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "In this winning Martini recipe,  a few simple ingredients come together in precisely the right proportions."
    },
    {
      "url": "https://punchdrink.com/recipes/gin-sonic/",
      "title": "Gin Sonic",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "Japan’s very own Gin & Tonic."
    },
    {
      "url": "https://punchdrink.com/recipes/harrison-ginsbergs-martinez/",
      "title": "Harrison Ginsberg’s Martinez",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "A modern take splits the base between Old Tom and London dry gins."
    },
    {
      "url": "https://punchdrink.com/recipes/gin-pahit/",
      "title": "Sling Bar's Gin Pahit",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "A simplified version of the pared-back Malaysian classic."
    },
    {
      "url": "https://punchdrink.com/recipes/harrison-ginsberg-white-negroni/",
      "title": "Harrison Ginsberg’s White Negroni",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "A winning recipe that adds a splash of verjus for extra brightness."
    },
    {
      "url": "https://punchdrink.com/recipes/maison-premieres-ramos-gin-fizz-cocktail-recipe/",
      "title": "Maison Premiere's Ramos Gin Fizz",
      "author": "Talia Baiocchi",
      "source": "punchdrink.com",
      "summary": "A winning recipe for the New Orleans classic."
    },
    {
      "url": "https://punchdrink.com/articles/mastering-the-gin-rickey-cocktail-recipe-with-aj-johnson/",
      "image": "https://punchdrink.com/wp-content/uploads/2021/09/Thumb-Gin-Rickey-Cocktail-Recipe-Andra-AJ-Johnson-Serenata-Washington-DC.jpg",
      "title": "Mastering the Gin Rickey with Andra “AJ” Johnson",
      "author": "Laurel Miller",
      "source": "punchdrink.com",
      "summary": "The D.C. bartender elevates the city's hometown highball with a vibrant, aromatic citrus syrup."
    }
  ],
  "hasMore": false
}
GETDetail Resep/v1/food:punchdrink/detailAmbil detail lengkap resep dari URL — bahan, langkah, durasi, porsi.

Parameters

urlstringrequired
Cocktail recipe URL on punchdrink.com

Request

curl -X GET "https://api.zpi.web.id/v1/food:punchdrink/detail?url=https%3A%2F%2Fpunchdrink.com%2Frecipes%2Fdirty-gin-tonic%2F" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://punchdrink.com/recipes/dirty-gin-tonic/",
  "image": "https://punchdrink.com/wp-content/uploads/2026/04/Article2-Dirty-Gin-Tonic-Fishers-Deans-Cocktail-Recipe.jpg?w=800",
  "steps": [
    "Add all ingredients to a Collins or highball glass over ice.",
    "Top with equal parts club soda and tonic water.",
    "Garnish with three pitted olives on a skewer."
  ],
  "title": "Dirty Gin & Tonic",
  "author": "Punch Staff",
  "source": "punchdrink.com",
  "summary": "The Dirty Gin & Tonic cocktail recipe from New York City restaurant Dean's is made with Fishers gin, fino sherry and olive brine.",
  "category": "Recipe",
  "servings": "1",
  "updatedAt": "2026-04-24T10:00:21Z",
  "ingredients": [
    "1 1/2 ounces gin, such as Fishers",
    "1/2 ounce fino sherry",
    "1/2 ounce olive brine",
    "equal parts club soda and light tonic water, such as Fever Tree Light Tonic, to top",
    "Garnish: three pitted olives on a skewer"
  ],
  "publishedAt": "2026-04-24T10:00:21Z"
}
GETResep Terbaru/v1/food:punchdrink/latestDaftar resep terbaru, optional filter kategori.

Parameters

categorystringoptional
Section slug (optional). Examples: cocktails, beer, wine, spirits, places. Leave empty for global feed.
pagenumberoptional
Page (default 1, max 50)

Request

curl -X GET "https://api.zpi.web.id/v1/food:punchdrink/latest?category=cocktails&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "url": "https://punchdrink.com/articles/best-trendy-cocktail-glassware-2026/",
      "title": "Five Glasses Defining Cocktail Bars Right Now",
      "author": "Liz Provencher",
      "source": "punchdrink.com",
      "summary": "From a statuesque Martini glass to a playful footed rocks glass, here’s what’s trending.",
      "category": "recommendations",
      "publishedAt": "Tue, 26 May 2026 12:47:38 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/ultimate-best-guide-to-cocktail-glassware/",
      "tags": [
        "glassware"
      ],
      "title": "The Ultimate Guide to Cocktail Glassware",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "The best go-tos and splurges in every category, plus our favorite outliers.",
      "category": "gift guide",
      "publishedAt": "Tue, 26 May 2026 10:00:20 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/boy-martini-manhattan-cocktail-trend/",
      "title": "Manhattan? Actually, It’s a “Boy Martini”",
      "author": "Bettina Makalintal",
      "source": "punchdrink.com",
      "summary": "First there were “girl dinners” and “boy kibble,” and now we’ve apparently rebranded the Manhattan.",
      "category": "trends",
      "publishedAt": "Thu, 21 May 2026 10:00:54 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/strawberry-cocktail-recipes/",
      "title": "All the Ways to Add Strawberries to Your Cocktail",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "Our favorite recipes using the fruit, from Daiquiris to Negronis to Miami Vices.",
      "category": "cocktail package",
      "publishedAt": "Tue, 19 May 2026 10:00:57 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/easy-tequila-cocktail-recipes/",
      "tags": [
        "update"
      ],
      "title": "Our Favorite Easy Tequila Cocktails",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "The agave spirit complements cold brew, Campari and more in these simple recipes.",
      "category": "cocktail package",
      "publishedAt": "Tue, 12 May 2026 10:00:38 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/best-easy-gimlet-cocktail-recipes-2025/",
      "tags": [
        "update"
      ],
      "title": "A Gimlet for Every Mood",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "Upgrade the gin classic with everything from celery to basil, MSG to Ango and more.",
      "category": "cocktail package",
      "publishedAt": "Thu, 07 May 2026 10:00:38 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/amaro-cocktail-recipes/",
      "tags": [
        "update"
      ],
      "title": "Our Favorite Easy Amaro Cocktails",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "Fifteen recipes starring the bittersweet liqueur, from the Jägerita to the Mezcaletti.",
      "category": "cocktail package",
      "publishedAt": "Tue, 05 May 2026 10:00:37 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/most-popular-best-cocktail-recipes-april-2026/",
      "title": "The Most Popular Cocktails of April",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "Here are the drinks that you couldn’t get enough of this month.",
      "category": "cocktail package",
      "publishedAt": "Fri, 01 May 2026 13:30:02 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/mint-julep-cocktail-recipes/",
      "tags": [
        "update"
      ],
      "title": "A Julep for Every Mood",
      "author": "Punch Staff",
      "source": "punchdrink.com",
      "summary": "From the minty classic to a pineapple-spiked take and more.",
      "category": "cocktail package",
      "publishedAt": "Mon, 27 Apr 2026 10:00:10 +0000"
    },
    {
      "url": "https://punchdrink.com/articles/dirty-gin-tonic-fishers-deans-cocktail-recipe/",
      "tags": [
        "recommendations"
      ],
      "title": "This Salty Gin Makes a Superb “Dirty G&T”",
      "author": "Mary Anne Porto",
      "source": "punchdrink.com",
      "summary": "Made with English seaside botanicals, it adds minerality to highballs, Martinis and more.",
      "category": "Obsessions",
      "publishedAt": "Fri, 24 Apr 2026 10:00:21 +0000"
    }
  ],
  "hasMore": false
}

Related APIs

More in food

GoFood

food/gofood

Cari restoran GoFood per kota/area & kategori masakan (data SSR). Catatan: detail menu per-resto tidak tersedia (di-gate WAF upstream).

162 calls·5m cache

Open Food Facts

food/openfoodfacts

Retrieve product information, ingredients, and nutritional data from packaged foods.

11 calls·5m cache

Resep Koki

food/resepkoki

Scraper resep masakan Indonesia dari Resep Koki — pencarian, detail resep lengkap (bahan, langkah, durasi), dan resep terbaru.

7 calls·10m cache

Dapur Umami

food/dapurumami

Scraper resep Dapur Umami — kumpulan resep masakan Indonesia, pencarian by keyword, detail resep (bahan, langkah, durasi, porsi).

6 calls·10m cache

Cookpad

food/cookpad

Cookpad recipe scraper — cari resep berdasarkan kata kunci, ambil detail resep, bahan, langkah dan waktu.

6 calls·1h cache

Zomato

food/zomato

Data restoran Zomato: pencarian per kota/cuisine, detail restoran, menu, dan ulasan. Catatan: Zomato tidak beroperasi di Indonesia — gunakan kota pasar aktif (mis. bangalore, dubai).

4 calls·10m cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026