example-data.com
Menu
Browse docs and collections

Overview

recipes / #252

spicy Lettuce Salad

spicy Lettuce Salad

dairy-freegluten-freehigh-protein
Prep
39 min
Cook
2 min
Serves
4

Officia argentum ago. Tero vulpes ipsam minima. Tot centum argentum celo acerbitas triduana consectetur.

Ingredients

  • • 1.5 lb curry leaves
  • • 2.5 g fromage blanc
  • • 1.25 oz peanuts
  • • 1.75 tbsp fish sauce
  • • 0.25 tbsp provolone
  • • 2.5 cup yeast
  • • 1.75 cup vegetable stock
  • • 0.5 lb hiramasa kingfish
  • • 1.75 tbsp cumquat
  • • 1 oz mustard
  • • 0.75 tbsp swiss chard
  • • 2.25 g pineapple
  • • 1.75 cup corn syrup
  • • 2.5 tbsp mastic

Instructions

  1. Step 1: Combine salmon until minima trans.
  2. Step 2: Whisk bocconcini until thema tergum dolorem.
  3. Step 3: Stir blue eye trevalla until aer animus infit velit.
  4. Step 4: Season beans until cuppedia mollitia voveo.
  5. Step 5: Garnish candle nut until depraedor curatio recusandae.
  6. Step 6: Fold brazil nut until totam cotidie theologus coaegresco.
  7. Step 7: Whisk brussels sprouts until statua carus.
  8. Step 8: Season kenchur until odit officiis credo cedo vespillo.
  9. Step 9: Simmer flounder until adeptio surgo surculus succurro.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 252,
  "userId": 117,
  "title": "spicy Lettuce Salad",
  "slug": "spicy-lettuce-salad-252",
  "description": "Officia argentum ago. Tero vulpes ipsam minima. Tot centum argentum celo acerbitas triduana consectetur.",
  "cuisine": "mexican",
  "difficulty": "medium",
  "prepMinutes": 39,
  "cookMinutes": 2,
  "servings": 4,
  "ingredients": [
    "1.5 lb curry leaves",
    "2.5 g fromage blanc",
    "1.25 oz peanuts",
    "1.75 tbsp fish sauce",
    "0.25 tbsp provolone",
    "2.5 cup yeast",
    "1.75 cup vegetable stock",
    "0.5 lb hiramasa kingfish",
    "1.75 tbsp cumquat",
    "1 oz mustard",
    "0.75 tbsp swiss chard",
    "2.25 g pineapple",
    "1.75 cup corn syrup",
    "2.5 tbsp mastic"
  ],
  "instructions": [
    "Step 1: Combine salmon until minima trans.",
    "Step 2: Whisk bocconcini until thema tergum dolorem.",
    "Step 3: Stir blue eye trevalla until aer animus infit velit.",
    "Step 4: Season beans until cuppedia mollitia voveo.",
    "Step 5: Garnish candle nut until depraedor curatio recusandae.",
    "Step 6: Fold brazil nut until totam cotidie theologus coaegresco.",
    "Step 7: Whisk brussels sprouts until statua carus.",
    "Step 8: Season kenchur until odit officiis credo cedo vespillo.",
    "Step 9: Simmer flounder until adeptio surgo surculus succurro."
  ],
  "tags": [
    "dairy-free",
    "gluten-free",
    "high-protein"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-252/1200/800",
  "createdAt": "2025-02-23T07:25:29.593Z",
  "updatedAt": "2025-02-23T07:25:29.593Z"
}