example-data.com
Menu
Browse docs and collections

Overview

recipes / #120

fresh Caprese Salad

fresh Caprese Salad

familyhigh-proteinhealthy
Prep
21 min
Cook
80 min
Serves
7

Cursus quo cervus callide comminor adipisci cruciamentum acceptus adhaero nihil.

Ingredients

  • • 3.25 cup slivered almonds
  • • 1.25 cup cassia bark
  • • 3 cup lavender flowers
  • • 0.5 cup goat milk
  • • 0.5 oz molasses
  • • 2 oz purple rice
  • • 3.25 lb cos lettuce
  • • 1.5 cup tea oil
  • • 3.25 g sweet chilli sauce
  • • 1 g kidneys
  • • 3.5 g goat milk

Instructions

  1. Step 1: Stir blood oranges until attero adeo comminor decor.
  2. Step 2: Season scallops until adeo velit aptus.
  3. Step 3: Garnish sprouts until fugiat videlicet.
  4. Step 4: Garnish cavalo until copiose timidus sophismata tenuis.
  5. Step 5: Garnish watercress until cognatus angustus corona vae.
  6. Step 6: Season kangaroo until verbera sol attonbitus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 120,
  "userId": 129,
  "title": "fresh Caprese Salad",
  "slug": "fresh-caprese-salad-120",
  "description": "Cursus quo cervus callide comminor adipisci cruciamentum acceptus adhaero nihil.",
  "cuisine": "italian",
  "difficulty": "easy",
  "prepMinutes": 21,
  "cookMinutes": 80,
  "servings": 7,
  "ingredients": [
    "3.25 cup slivered almonds",
    "1.25 cup cassia bark",
    "3 cup lavender flowers",
    "0.5 cup goat milk",
    "0.5 oz molasses",
    "2 oz purple rice",
    "3.25 lb cos lettuce",
    "1.5 cup tea oil",
    "3.25 g sweet chilli sauce",
    "1 g kidneys",
    "3.5 g goat milk"
  ],
  "instructions": [
    "Step 1: Stir blood oranges until attero adeo comminor decor.",
    "Step 2: Season scallops until adeo velit aptus.",
    "Step 3: Garnish sprouts until fugiat videlicet.",
    "Step 4: Garnish cavalo until copiose timidus sophismata tenuis.",
    "Step 5: Garnish watercress until cognatus angustus corona vae.",
    "Step 6: Season kangaroo until verbera sol attonbitus."
  ],
  "tags": [
    "family",
    "high-protein",
    "healthy"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-120/1200/800",
  "createdAt": "2025-03-22T05:08:18.879Z",
  "updatedAt": "2025-03-22T05:08:18.879Z"
}