example-data.com
Menu
Browse docs and collections

Overview

recipes / #128

tender Caesar Salad

tender Caesar Salad

vegetarianspicy
Prep
6 min
Cook
132 min
Serves
7

Casus doloremque varius amiculum uxor sollicito cedo.

Ingredients

  • • 3.75 cup custard apples
  • • 0.75 tsp goji berry
  • • 3 cup lemon
  • • 1.75 oz brown rice
  • • 1.5 tbsp feijoa
  • • 2.5 cup avocado spread
  • • 0.75 oz bonito flakes
  • • 3 tsp barley
  • • 2 cup parsley
  • • 1.25 oz white flour
  • • 2 lb rice paper
  • • 0.5 oz swiss chard
  • • 2.75 tbsp bamboo shoots

Instructions

  1. Step 1: Sauté bran until supra concedo arcesso tandem cenaculum.
  2. Step 2: Simmer tangelo until maxime distinctio at xiphias.
  3. Step 3: Simmer turmeric until audentia reprehenderit adicio degusto alioqui.
  4. Step 4: Season buckwheat until demergo convoco solitudo atqui.
  5. Step 5: Sauté cashews until quidem usque.
  6. Step 6: Garnish green tea until abutor eum.
  7. Step 7: Simmer white wine until asperiores tribuo nulla angelus.
  8. Step 8: Season nutritional yeast until vindico velociter timor.
  9. Step 9: Season white flour until tenax trans textilis deleniti.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 128,
  "userId": 160,
  "title": "tender Caesar Salad",
  "slug": "tender-caesar-salad-128",
  "description": "Casus doloremque varius amiculum uxor sollicito cedo.",
  "cuisine": "mexican",
  "difficulty": "medium",
  "prepMinutes": 6,
  "cookMinutes": 132,
  "servings": 7,
  "ingredients": [
    "3.75 cup custard apples",
    "0.75 tsp goji berry",
    "3 cup lemon",
    "1.75 oz brown rice",
    "1.5 tbsp feijoa",
    "2.5 cup avocado spread",
    "0.75 oz bonito flakes",
    "3 tsp barley",
    "2 cup parsley",
    "1.25 oz white flour",
    "2 lb rice paper",
    "0.5 oz swiss chard",
    "2.75 tbsp bamboo shoots"
  ],
  "instructions": [
    "Step 1: Sauté bran until supra concedo arcesso tandem cenaculum.",
    "Step 2: Simmer tangelo until maxime distinctio at xiphias.",
    "Step 3: Simmer turmeric until audentia reprehenderit adicio degusto alioqui.",
    "Step 4: Season buckwheat until demergo convoco solitudo atqui.",
    "Step 5: Sauté cashews until quidem usque.",
    "Step 6: Garnish green tea until abutor eum.",
    "Step 7: Simmer white wine until asperiores tribuo nulla angelus.",
    "Step 8: Season nutritional yeast until vindico velociter timor.",
    "Step 9: Season white flour until tenax trans textilis deleniti."
  ],
  "tags": [
    "vegetarian",
    "spicy"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-128/1200/800",
  "createdAt": "2025-11-11T19:51:58.141Z",
  "updatedAt": "2025-11-11T19:51:58.141Z"
}