example-data.com
Menu
Browse docs and collections

Overview

recipes / #271

spicy Poutine

spicy Poutine

Prep
10 min
Cook
43 min
Serves
4

Vulgivagus nemo turpis versus reiciendis ducimus vacuus assumenda suscipio.

Ingredients

  • • 2.25 lb fenugreek
  • • 1.75 tbsp oysters
  • • 2.75 g coriander seed
  • • 1.75 tsp parrotfish
  • • 0.25 cup gula melaka
  • • 1.5 tbsp mastic
  • • 3 oz tea

Instructions

  1. Step 1: Season vegetable oil until voro autus amicitia.
  2. Step 2: Stir chickory until casus timidus bis.
  3. Step 3: Whisk spring onions until tutis vereor contigo veniam appello.
  4. Step 4: Garnish flaxseed until crudelis conservo vergo stipes arbustum.
  5. Step 5: Stir squash until aeneus temporibus veritas sortitus.
  6. Step 6: Simmer hot smoked salmon until commodi attero voluntarius.
  7. Step 7: Sauté harissa until centum fugit angulus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 271,
  "userId": 106,
  "title": "spicy Poutine",
  "slug": "spicy-poutine-271",
  "description": "Vulgivagus nemo turpis versus reiciendis ducimus vacuus assumenda suscipio.",
  "cuisine": "chinese",
  "difficulty": "easy",
  "prepMinutes": 10,
  "cookMinutes": 43,
  "servings": 4,
  "ingredients": [
    "2.25 lb fenugreek",
    "1.75 tbsp oysters",
    "2.75 g coriander seed",
    "1.75 tsp parrotfish",
    "0.25 cup gula melaka",
    "1.5 tbsp mastic",
    "3 oz tea"
  ],
  "instructions": [
    "Step 1: Season vegetable oil until voro autus amicitia.",
    "Step 2: Stir chickory until casus timidus bis.",
    "Step 3: Whisk spring onions until tutis vereor contigo veniam appello.",
    "Step 4: Garnish flaxseed until crudelis conservo vergo stipes arbustum.",
    "Step 5: Stir squash until aeneus temporibus veritas sortitus.",
    "Step 6: Simmer hot smoked salmon until commodi attero voluntarius.",
    "Step 7: Sauté harissa until centum fugit angulus."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-271/1200/800",
  "createdAt": "2024-07-07T01:54:30.059Z",
  "updatedAt": "2024-07-07T01:54:30.059Z"
}