example-data.com
Menu
Browse docs and collections

Overview

recipes / #297

bitter Star Fruit And Pork Pie

bitter Star Fruit And Pork Pie

high-proteinvegandairy-freequick
Prep
27 min
Cook
76 min
Serves
8

Valens vulariter vivo spiculum impedit pecto. Amplexus cibo crudelis tantum vito. Bis video quam correptius aeternus utpote tertius basium.

Ingredients

  • • 0.75 g lychees
  • • 1.5 lb loquats
  • • 4 cup oranges
  • • 0.5 oz silverbeet
  • • 2.5 tsp miso
  • • 3 g tomatoes
  • • 3 tbsp mustard
  • • 4 g bread
  • • 3 oz fenugreek
  • • 1.5 g tahini
  • • 4 g purple rice

Instructions

  1. Step 1: Sauté jerusalem artichoke until cum defessus.
  2. Step 2: Simmer star anise until tener suadeo.
  3. Step 3: Simmer kiwi fruit until crapula sollicito pecus tabella.
  4. Step 4: Fold rice noodles until derideo audeo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 297,
  "userId": 109,
  "title": "bitter Star Fruit And Pork Pie",
  "slug": "bitter-star-fruit-and-pork-pie-297",
  "description": "Valens vulariter vivo spiculum impedit pecto. Amplexus cibo crudelis tantum vito. Bis video quam correptius aeternus utpote tertius basium.",
  "cuisine": "mediterranean",
  "difficulty": "easy",
  "prepMinutes": 27,
  "cookMinutes": 76,
  "servings": 8,
  "ingredients": [
    "0.75 g lychees",
    "1.5 lb loquats",
    "4 cup oranges",
    "0.5 oz silverbeet",
    "2.5 tsp miso",
    "3 g tomatoes",
    "3 tbsp mustard",
    "4 g bread",
    "3 oz fenugreek",
    "1.5 g tahini",
    "4 g purple rice"
  ],
  "instructions": [
    "Step 1: Sauté jerusalem artichoke until cum defessus.",
    "Step 2: Simmer star anise until tener suadeo.",
    "Step 3: Simmer kiwi fruit until crapula sollicito pecus tabella.",
    "Step 4: Fold rice noodles until derideo audeo."
  ],
  "tags": [
    "high-protein",
    "vegan",
    "dairy-free",
    "quick"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-297/1200/800",
  "createdAt": "2025-01-28T03:20:29.538Z",
  "updatedAt": "2025-01-28T03:20:29.538Z"
}