example-data.com
Menu
Browse docs and collections

Overview

recipes / #288

crispy Bunny Chow

crispy Bunny Chow

Prep
37 min
Cook
76 min
Serves
1

Tibi stabilis spectaculum dignissimos versus ascit subiungo magni suppono.

Ingredients

  • • 0.5 lb muesli
  • • 4 oz almonds
  • • 2.5 cup jelly
  • • 1.5 lb annatto seed
  • • 2.75 lb black eyed beans
  • • 3.75 cup ajowan seed
  • • 0.5 g potatoes

Instructions

  1. Step 1: Garnish sunflower seeds until comptus tubineus neque.
  2. Step 2: Stir squid until amplexus allatus thymum rerum.
  3. Step 3: Stir vegetable stock until theca adopto vespillo.
  4. Step 4: Sauté macadamia oil until placeat cursus clarus ciminatio adicio.
  5. Step 5: Sauté celery seed until suscipit sursum.
  6. Step 6: Garnish parmesan cheese until avarus sit.
  7. Step 7: Season edamame until thorax fugit adipiscor.
  8. Step 8: Fold wholemeal until deripio nesciunt tribuo.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/recipes/288"
);
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/288"
);
const recipe = (await res.json()) as Recipe;

Python example

import requests

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

Response

{
  "id": 288,
  "userId": 225,
  "title": "crispy Bunny Chow",
  "slug": "crispy-bunny-chow-288",
  "description": "Tibi stabilis spectaculum dignissimos versus ascit subiungo magni suppono.",
  "cuisine": "mediterranean",
  "difficulty": "hard",
  "prepMinutes": 37,
  "cookMinutes": 76,
  "servings": 1,
  "ingredients": [
    "0.5 lb muesli",
    "4 oz almonds",
    "2.5 cup jelly",
    "1.5 lb annatto seed",
    "2.75 lb black eyed beans",
    "3.75 cup ajowan seed",
    "0.5 g potatoes"
  ],
  "instructions": [
    "Step 1: Garnish sunflower seeds until comptus tubineus neque.",
    "Step 2: Stir squid until amplexus allatus thymum rerum.",
    "Step 3: Stir vegetable stock until theca adopto vespillo.",
    "Step 4: Sauté macadamia oil until placeat cursus clarus ciminatio adicio.",
    "Step 5: Sauté celery seed until suscipit sursum.",
    "Step 6: Garnish parmesan cheese until avarus sit.",
    "Step 7: Season edamame until thorax fugit adipiscor.",
    "Step 8: Fold wholemeal until deripio nesciunt tribuo."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-288/1200/800",
  "createdAt": "2026-02-12T13:55:45.287Z",
  "updatedAt": "2026-02-12T13:55:45.287Z"
}