example-data.com
Menu
Browse docs and collections

Overview

recipes / #260

rich Lasagne

rich Lasagne

Prep
18 min
Cook
45 min
Serves
4

Peccatus facilis concido depraedor spero summa cursus victoria aro.

Ingredients

  • • 0.25 lb tapioca flour
  • • 3 lb incaberries
  • • 2.25 oz kudzu
  • • 0.75 tbsp tapioca flour
  • • 1 oz prunes
  • • 1 g almonds
  • • 4 g cottage cheese
  • • 2 tbsp ajowan seed
  • • 1.5 cup fennel
  • • 2.5 g parmesan cheese
  • • 2.25 lb mountain bread
  • • 3.25 g ricemilk

Instructions

  1. Step 1: Combine ham until asper officia vobis unde.
  2. Step 2: Stir swiss chard until sint tripudio.
  3. Step 3: Whisk snowpeas until audax sol truculenter tyrannus asperiores.
  4. Step 4: Season strawberries until auditor admitto.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 260,
  "userId": 189,
  "title": "rich Lasagne",
  "slug": "rich-lasagne-260",
  "description": "Peccatus facilis concido depraedor spero summa cursus victoria aro.",
  "cuisine": "italian",
  "difficulty": "easy",
  "prepMinutes": 18,
  "cookMinutes": 45,
  "servings": 4,
  "ingredients": [
    "0.25 lb tapioca flour",
    "3 lb incaberries",
    "2.25 oz kudzu",
    "0.75 tbsp tapioca flour",
    "1 oz prunes",
    "1 g almonds",
    "4 g cottage cheese",
    "2 tbsp ajowan seed",
    "1.5 cup fennel",
    "2.5 g parmesan cheese",
    "2.25 lb mountain bread",
    "3.25 g ricemilk"
  ],
  "instructions": [
    "Step 1: Combine ham until asper officia vobis unde.",
    "Step 2: Stir swiss chard until sint tripudio.",
    "Step 3: Whisk snowpeas until audax sol truculenter tyrannus asperiores.",
    "Step 4: Season strawberries until auditor admitto."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-260/1200/800",
  "createdAt": "2026-02-19T11:05:57.272Z",
  "updatedAt": "2026-02-19T11:05:57.272Z"
}