example-data.com
Menu
Browse docs and collections

Overview

recipes / #299

tender Goji Berry Pie

tender Goji Berry Pie

vegetariangluten-freedairy-freespicy
Prep
44 min
Cook
119 min
Serves
5

Deputo bestia repudiandae repellendus vilicus certe viscus occaecati.

Ingredients

  • • 1.5 cup blue cheese
  • • 2.5 g liver
  • • 1.5 tbsp mint
  • • 1.75 tsp dill
  • • 3 tbsp cumquat
  • • 3.75 cup sunflower oil
  • • 4 tsp mangosteens

Instructions

  1. Step 1: Combine mackerel until voluptate admiratio.
  2. Step 2: Combine pork until spoliatio ducimus.
  3. Step 3: Sauté sardines until solum vinitor.
  4. Step 4: Fold marigold until similique tempora aequus.
  5. Step 5: Stir cranberry until contigo advoco suasoria.
  6. Step 6: Combine peanuts until unus illum taceo vita abduco.
  7. Step 7: Combine calamari until cibo earum ubi vitiosus.
  8. Step 8: Combine edamame until tres velut audacia audax placeat.
  9. Step 9: Stir broccolini until bene comis nesciunt.
  10. Step 10: Sauté red wine vinegar until tutamen termes.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 299,
  "userId": 248,
  "title": "tender Goji Berry Pie",
  "slug": "tender-goji-berry-pie-299",
  "description": "Deputo bestia repudiandae repellendus vilicus certe viscus occaecati.",
  "cuisine": "vietnamese",
  "difficulty": "hard",
  "prepMinutes": 44,
  "cookMinutes": 119,
  "servings": 5,
  "ingredients": [
    "1.5 cup blue cheese",
    "2.5 g liver",
    "1.5 tbsp mint",
    "1.75 tsp dill",
    "3 tbsp cumquat",
    "3.75 cup sunflower oil",
    "4 tsp mangosteens"
  ],
  "instructions": [
    "Step 1: Combine mackerel until voluptate admiratio.",
    "Step 2: Combine pork until spoliatio ducimus.",
    "Step 3: Sauté sardines until solum vinitor.",
    "Step 4: Fold marigold until similique tempora aequus.",
    "Step 5: Stir cranberry until contigo advoco suasoria.",
    "Step 6: Combine peanuts until unus illum taceo vita abduco.",
    "Step 7: Combine calamari until cibo earum ubi vitiosus.",
    "Step 8: Combine edamame until tres velut audacia audax placeat.",
    "Step 9: Stir broccolini until bene comis nesciunt.",
    "Step 10: Sauté red wine vinegar until tutamen termes."
  ],
  "tags": [
    "vegetarian",
    "gluten-free",
    "dairy-free",
    "spicy"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-299/1200/800",
  "createdAt": "2025-02-10T12:21:06.513Z",
  "updatedAt": "2025-02-10T12:21:06.513Z"
}