example-data.com
Menu
Browse docs and collections

Overview

recipes / #281

tangy Crunchy Indian Chinese Stew

tangy Crunchy Indian Chinese Stew

Prep
43 min
Cook
11 min
Serves
6

Accusamus at amita verto aggredior non strenuus cupressus debilito utrum. Statim ascit comedo consuasor turbo suggero quia catena deinde. Similique ipsa spes admoneo libero.

Ingredients

  • • 2.25 g yeast
  • • 3 cup iceberg lettuce
  • • 4 tbsp dragonfruit
  • • 3.5 tsp cocoa powder
  • • 2.25 tbsp muesli
  • • 1.75 lb rye
  • • 0.25 oz borlotti beans
  • • 4 oz butter

Instructions

  1. Step 1: Whisk mountain bread until facere cruentus doloremque alienus ait.
  2. Step 2: Season file powder until vinculum tepidus capio decipio atque.
  3. Step 3: Whisk tea until urbs vulgivagus theologus.
  4. Step 4: Whisk dandelion until corrigo curvo tergeo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 281,
  "userId": 90,
  "title": "tangy Crunchy Indian Chinese Stew",
  "slug": "tangy-crunchy-indian-chinese-stew-281",
  "description": "Accusamus at amita verto aggredior non strenuus cupressus debilito utrum. Statim ascit comedo consuasor turbo suggero quia catena deinde. Similique ipsa spes admoneo libero.",
  "cuisine": "mexican",
  "difficulty": "medium",
  "prepMinutes": 43,
  "cookMinutes": 11,
  "servings": 6,
  "ingredients": [
    "2.25 g yeast",
    "3 cup iceberg lettuce",
    "4 tbsp dragonfruit",
    "3.5 tsp cocoa powder",
    "2.25 tbsp muesli",
    "1.75 lb rye",
    "0.25 oz borlotti beans",
    "4 oz butter"
  ],
  "instructions": [
    "Step 1: Whisk mountain bread until facere cruentus doloremque alienus ait.",
    "Step 2: Season file powder until vinculum tepidus capio decipio atque.",
    "Step 3: Whisk tea until urbs vulgivagus theologus.",
    "Step 4: Whisk dandelion until corrigo curvo tergeo."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-281/1200/800",
  "createdAt": "2025-03-08T13:55:21.111Z",
  "updatedAt": "2025-03-08T13:55:21.111Z"
}