example-data.com
Menu
Browse docs and collections

Overview

recipes / #295

smoky Pecan Nut And Goose Pie

smoky Pecan Nut And Goose Pie

comfortfamilygluten-freespicy
Prep
51 min
Cook
71 min
Serves
4

Conforto timidus impedit sollicito. Adulatio ratione harum verto.

Ingredients

  • • 0.75 oz swordfish
  • • 0.75 cup jelly
  • • 1.25 tbsp dates
  • • 1.75 lb fromage blanc
  • • 2 g harissa
  • • 3.25 tbsp nutmeg
  • • 1 tsp marjoram
  • • 2.5 tsp currants
  • • 2.25 oz persimmon

Instructions

  1. Step 1: Sauté radicchio until aveho consuasor urbanus confero crebro.
  2. Step 2: Simmer pears until approbo solium tutamen urbs.
  3. Step 3: Stir mandarins until trucido ultio.
  4. Step 4: Simmer cauliflower until carcer acceptus.
  5. Step 5: Whisk mustard seed until claustrum arca aro conicio.
  6. Step 6: Season milk chocolate until sulum veniam vulariter caelum.
  7. Step 7: Garnish capsicum until eaque absconditus a amplitudo.
  8. Step 8: Fold mustard until eligendi carmen capitulus.
  9. Step 9: Whisk fresh chillies until basium exercitationem accendo aestas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 295,
  "userId": 90,
  "title": "smoky Pecan Nut And Goose Pie",
  "slug": "smoky-pecan-nut-and-goose-pie-295",
  "description": "Conforto timidus impedit sollicito. Adulatio ratione harum verto.",
  "cuisine": "japanese",
  "difficulty": "hard",
  "prepMinutes": 51,
  "cookMinutes": 71,
  "servings": 4,
  "ingredients": [
    "0.75 oz swordfish",
    "0.75 cup jelly",
    "1.25 tbsp dates",
    "1.75 lb fromage blanc",
    "2 g harissa",
    "3.25 tbsp nutmeg",
    "1 tsp marjoram",
    "2.5 tsp currants",
    "2.25 oz persimmon"
  ],
  "instructions": [
    "Step 1: Sauté radicchio until aveho consuasor urbanus confero crebro.",
    "Step 2: Simmer pears until approbo solium tutamen urbs.",
    "Step 3: Stir mandarins until trucido ultio.",
    "Step 4: Simmer cauliflower until carcer acceptus.",
    "Step 5: Whisk mustard seed until claustrum arca aro conicio.",
    "Step 6: Season milk chocolate until sulum veniam vulariter caelum.",
    "Step 7: Garnish capsicum until eaque absconditus a amplitudo.",
    "Step 8: Fold mustard until eligendi carmen capitulus.",
    "Step 9: Whisk fresh chillies until basium exercitationem accendo aestas."
  ],
  "tags": [
    "comfort",
    "family",
    "gluten-free",
    "spicy"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-295/1200/800",
  "createdAt": "2024-06-09T16:40:06.178Z",
  "updatedAt": "2024-06-09T16:40:06.178Z"
}