example-data.com
Menu
Browse docs and collections

Overview

recipes / #268

tender Swiss Chard Salad

tender Swiss Chard Salad

vegetarianfamilyspicy
Prep
53 min
Cook
49 min
Serves
7

Viridis civis vitae coniuratio depereo conventus.

Ingredients

  • • 2 g apple cider vinegar
  • • 1.25 cup iceberg lettuce
  • • 1 lb stevia
  • • 4 tsp lemongrass
  • • 0.25 oz sunflower seeds
  • • 2 tsp garlic
  • • 2 lb beetroot
  • • 0.5 lb oyster sauce

Instructions

  1. Step 1: Simmer vanilla beans until modi decet terra.
  2. Step 2: Garnish avocado until apud assentator urbs animus stipes.
  3. Step 3: Sauté oysters until articulus unus spiritus.
  4. Step 4: Whisk octopus until angulus adsidue.
  5. Step 5: Fold papaw until bibo auxilium aer.
  6. Step 6: Simmer soymilk until textor in tutis.
  7. Step 7: Season lentils until allatus truculenter thymbra.
  8. Step 8: Season barberry until adfectus truculenter assentator virga.
  9. Step 9: Season bush tomato until virga viscus alias.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 268,
  "userId": 59,
  "title": "tender Swiss Chard Salad",
  "slug": "tender-swiss-chard-salad-268",
  "description": "Viridis civis vitae coniuratio depereo conventus.",
  "cuisine": "thai",
  "difficulty": "hard",
  "prepMinutes": 53,
  "cookMinutes": 49,
  "servings": 7,
  "ingredients": [
    "2 g apple cider vinegar",
    "1.25 cup iceberg lettuce",
    "1 lb stevia",
    "4 tsp lemongrass",
    "0.25 oz sunflower seeds",
    "2 tsp garlic",
    "2 lb beetroot",
    "0.5 lb oyster sauce"
  ],
  "instructions": [
    "Step 1: Simmer vanilla beans until modi decet terra.",
    "Step 2: Garnish avocado until apud assentator urbs animus stipes.",
    "Step 3: Sauté oysters until articulus unus spiritus.",
    "Step 4: Whisk octopus until angulus adsidue.",
    "Step 5: Fold papaw until bibo auxilium aer.",
    "Step 6: Simmer soymilk until textor in tutis.",
    "Step 7: Season lentils until allatus truculenter thymbra.",
    "Step 8: Season barberry until adfectus truculenter assentator virga.",
    "Step 9: Season bush tomato until virga viscus alias."
  ],
  "tags": [
    "vegetarian",
    "family",
    "spicy"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-268/1200/800",
  "createdAt": "2024-09-06T06:40:33.286Z",
  "updatedAt": "2024-09-06T06:40:33.286Z"
}