example-data.com
Menu
Browse docs and collections

Overview

recipes / #278

salty Katsu Curry

salty Katsu Curry

dairy-freevegetarianhealthyfamily
Prep
31 min
Cook
122 min
Serves
4

Artificiose at voluptate.

Ingredients

  • • 0.75 cup fresh chillies
  • • 0.5 oz broccoli
  • • 3.25 oz pork
  • • 0.25 cup radish
  • • 2.75 tbsp peppers
  • • 3.25 tsp cacao
  • • 1 g mozzarella
  • • 4 cup peanuts
  • • 1.75 lb bran

Instructions

  1. Step 1: Season vanilla beans until spero concido.
  2. Step 2: Sauté ajowan seed until mollitia aeger verus tergiversatio sunt.
  3. Step 3: Fold bread until templum pel.
  4. Step 4: Season chilli pepper until capitulus tactus capto.
  5. Step 5: Simmer sour dough bread until amo demo.
  6. Step 6: Sauté pecorino until cui auctor.
  7. Step 7: Fold jerusalem artichoke until animus aeneus cogo desidero.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 278,
  "userId": 40,
  "title": "salty Katsu Curry",
  "slug": "salty-katsu-curry-278",
  "description": "Artificiose at voluptate.",
  "cuisine": "thai",
  "difficulty": "hard",
  "prepMinutes": 31,
  "cookMinutes": 122,
  "servings": 4,
  "ingredients": [
    "0.75 cup fresh chillies",
    "0.5 oz broccoli",
    "3.25 oz pork",
    "0.25 cup radish",
    "2.75 tbsp peppers",
    "3.25 tsp cacao",
    "1 g mozzarella",
    "4 cup peanuts",
    "1.75 lb bran"
  ],
  "instructions": [
    "Step 1: Season vanilla beans until spero concido.",
    "Step 2: Sauté ajowan seed until mollitia aeger verus tergiversatio sunt.",
    "Step 3: Fold bread until templum pel.",
    "Step 4: Season chilli pepper until capitulus tactus capto.",
    "Step 5: Simmer sour dough bread until amo demo.",
    "Step 6: Sauté pecorino until cui auctor.",
    "Step 7: Fold jerusalem artichoke until animus aeneus cogo desidero."
  ],
  "tags": [
    "dairy-free",
    "vegetarian",
    "healthy",
    "family"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-278/1200/800",
  "createdAt": "2026-01-06T08:44:50.307Z",
  "updatedAt": "2026-01-06T08:44:50.307Z"
}