example-data.com
Menu
Browse docs and collections

Overview

recipes / #64

golden Bunny Chow

golden Bunny Chow

Prep
52 min
Cook
151 min
Serves
7

Stella conventus valde abeo clementia placeat beneficium vel consequuntur. Cernuus ut saepe deputo benigne combibo aut cubicularis auctor alo. Cur arbitro veritatis summa.

Ingredients

  • • 0.5 tbsp provolone
  • • 2 oz lotus root
  • • 3.25 tsp flathead
  • • 1.5 tsp pandanus leaves
  • • 1.25 lb soymilk
  • • 0.5 tbsp snowpeas
  • • 3.25 oz lentils
  • • 2 cup arrowroot
  • • 2.25 oz cherries
  • • 0.5 oz tahini
  • • 0.25 lb rice syrup
  • • 3 oz saffron

Instructions

  1. Step 1: Fold oranges until at veniam.
  2. Step 2: Fold garam masala until surculus eligendi spectaculum admitto consequatur.
  3. Step 3: Simmer loquats until damno defleo.
  4. Step 4: Fold oyster mushrooms until vesper subito voluptas cubitum.
  5. Step 5: Garnish chicken until pectus addo.
  6. Step 6: Season bocconcini until decens adamo cupiditas.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/recipes/64" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/recipes/64"
);
const recipe = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/recipes.d.ts https://example-data.com/types/recipes.d.ts
import type { Recipe } from "./types/recipes";

const res = await fetch(
  "https://example-data.com/api/v1/recipes/64"
);
const recipe = (await res.json()) as Recipe;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/recipes/64"
)
recipe = res.json()

Response

{
  "id": 64,
  "userId": 232,
  "title": "golden Bunny Chow",
  "slug": "golden-bunny-chow-64",
  "description": "Stella conventus valde abeo clementia placeat beneficium vel consequuntur. Cernuus ut saepe deputo benigne combibo aut cubicularis auctor alo. Cur arbitro veritatis summa.",
  "cuisine": "indian",
  "difficulty": "easy",
  "prepMinutes": 52,
  "cookMinutes": 151,
  "servings": 7,
  "ingredients": [
    "0.5 tbsp provolone",
    "2 oz lotus root",
    "3.25 tsp flathead",
    "1.5 tsp pandanus leaves",
    "1.25 lb soymilk",
    "0.5 tbsp snowpeas",
    "3.25 oz lentils",
    "2 cup arrowroot",
    "2.25 oz cherries",
    "0.5 oz tahini",
    "0.25 lb rice syrup",
    "3 oz saffron"
  ],
  "instructions": [
    "Step 1: Fold oranges until at veniam.",
    "Step 2: Fold garam masala until surculus eligendi spectaculum admitto consequatur.",
    "Step 3: Simmer loquats until damno defleo.",
    "Step 4: Fold oyster mushrooms until vesper subito voluptas cubitum.",
    "Step 5: Garnish chicken until pectus addo.",
    "Step 6: Season bocconcini until decens adamo cupiditas."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-64/1200/800",
  "createdAt": "2025-01-30T04:02:31.653Z",
  "updatedAt": "2025-01-30T04:02:31.653Z"
}