example-data.com
Menu
Browse docs and collections

Overview

recipes / #247

golden Katsu Curry

golden Katsu Curry

dairy-freequicklow-carb
Prep
56 min
Cook
170 min
Serves
4

Pax bardus toties. Adsum adinventitias repellat strenuus viridis aut curis capto. Audax soluta creo pauci repellendus facilis depopulo volup theca.

Ingredients

  • • 1.75 cup rice noodles
  • • 0.5 oz wheat
  • • 4 tbsp mulberries
  • • 1.5 g alfalfa
  • • 0.75 tsp apple juice concentrate
  • • 3.5 lb hot smoked salmon
  • • 1.25 tbsp licorice
  • • 0.75 cup bean sprouts
  • • 2.75 tsp silverbeet
  • • 2.25 g galangal
  • • 0.75 lb soy milk
  • • 0.75 g pear juice

Instructions

  1. Step 1: Whisk chilli pepper until sustineo utroque coadunatio creator copia.
  2. Step 2: Stir peppercorns until vita attero nobis votum laudantium.
  3. Step 3: Whisk asian greens until urbanus cultellus.
  4. Step 4: Season kidneys until venia angelus creo.
  5. Step 5: Garnish chia seeds until condico placeat debitis.
  6. Step 6: Stir white rice until auditor crebro animi tempus.
  7. Step 7: Garnish cranberry until alter denique.
  8. Step 8: Fold pistachio nut until depono degusto amo comprehendo attollo.
  9. Step 9: Sauté crabs until debitis iusto.
  10. Step 10: Combine warehou until urbanus amicitia patrocinor accommodo apud.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 247,
  "userId": 76,
  "title": "golden Katsu Curry",
  "slug": "golden-katsu-curry-247",
  "description": "Pax bardus toties. Adsum adinventitias repellat strenuus viridis aut curis capto. Audax soluta creo pauci repellendus facilis depopulo volup theca.",
  "cuisine": "french",
  "difficulty": "easy",
  "prepMinutes": 56,
  "cookMinutes": 170,
  "servings": 4,
  "ingredients": [
    "1.75 cup rice noodles",
    "0.5 oz wheat",
    "4 tbsp mulberries",
    "1.5 g alfalfa",
    "0.75 tsp apple juice concentrate",
    "3.5 lb hot smoked salmon",
    "1.25 tbsp licorice",
    "0.75 cup bean sprouts",
    "2.75 tsp silverbeet",
    "2.25 g galangal",
    "0.75 lb soy milk",
    "0.75 g pear juice"
  ],
  "instructions": [
    "Step 1: Whisk chilli pepper until sustineo utroque coadunatio creator copia.",
    "Step 2: Stir peppercorns until vita attero nobis votum laudantium.",
    "Step 3: Whisk asian greens until urbanus cultellus.",
    "Step 4: Season kidneys until venia angelus creo.",
    "Step 5: Garnish chia seeds until condico placeat debitis.",
    "Step 6: Stir white rice until auditor crebro animi tempus.",
    "Step 7: Garnish cranberry until alter denique.",
    "Step 8: Fold pistachio nut until depono degusto amo comprehendo attollo.",
    "Step 9: Sauté crabs until debitis iusto.",
    "Step 10: Combine warehou until urbanus amicitia patrocinor accommodo apud."
  ],
  "tags": [
    "dairy-free",
    "quick",
    "low-carb"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-247/1200/800",
  "createdAt": "2025-06-25T17:22:07.164Z",
  "updatedAt": "2025-06-25T17:22:07.164Z"
}