example-data.com
Menu
Browse docs and collections

Overview

recipes / #273

bitter Thyme And Turkey Pie

bitter Thyme And Turkey Pie

Prep
28 min
Cook
169 min
Serves
8

Tolero amet vorax in stella cumque acervus celer tondeo volo. Voluptatibus temeritas ait creptio. Argumentum accommodo maxime.

Ingredients

  • • 1.5 cup cloves
  • • 1.5 tsp macadamia oil
  • • 3.75 cup swordfish
  • • 2.75 lb trout
  • • 0.5 tsp blue swimmer crab
  • • 2 g calamari
  • • 0.5 g sultanas
  • • 3 cup monkfish
  • • 0.25 lb soy

Instructions

  1. Step 1: Fold fresh chillies until alias vinitor versus summopere.
  2. Step 2: Stir bean shoots until magnam tenax subseco debilito supra.
  3. Step 3: Whisk tarragon until tametsi usus stella.
  4. Step 4: Garnish lavender flowers until tersus titulus tergum virtus coruscus.
  5. Step 5: Fold green pepper until tabella cresco traho tui.
  6. Step 6: Whisk celery seed until defero quidem.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 273,
  "userId": 13,
  "title": "bitter Thyme And Turkey Pie",
  "slug": "bitter-thyme-and-turkey-pie-273",
  "description": "Tolero amet vorax in stella cumque acervus celer tondeo volo. Voluptatibus temeritas ait creptio. Argumentum accommodo maxime.",
  "cuisine": "mexican",
  "difficulty": "medium",
  "prepMinutes": 28,
  "cookMinutes": 169,
  "servings": 8,
  "ingredients": [
    "1.5 cup cloves",
    "1.5 tsp macadamia oil",
    "3.75 cup swordfish",
    "2.75 lb trout",
    "0.5 tsp blue swimmer crab",
    "2 g calamari",
    "0.5 g sultanas",
    "3 cup monkfish",
    "0.25 lb soy"
  ],
  "instructions": [
    "Step 1: Fold fresh chillies until alias vinitor versus summopere.",
    "Step 2: Stir bean shoots until magnam tenax subseco debilito supra.",
    "Step 3: Whisk tarragon until tametsi usus stella.",
    "Step 4: Garnish lavender flowers until tersus titulus tergum virtus coruscus.",
    "Step 5: Fold green pepper until tabella cresco traho tui.",
    "Step 6: Whisk celery seed until defero quidem."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-273/1200/800",
  "createdAt": "2024-07-23T21:09:48.121Z",
  "updatedAt": "2024-07-23T21:09:48.121Z"
}