example-data.com
Menu
Browse docs and collections

Overview

recipes / #291

bitter Bitter Jamaican Stew

bitter Bitter Jamaican Stew

vegancomfort
Prep
17 min
Cook
118 min
Serves
3

Vestigium repudiandae depopulo taceo voro alioqui iste arca.

Ingredients

  • • 0.75 g feta
  • • 2.5 tsp sake
  • • 3.75 oz butter beans
  • • 3 oz passionfruit
  • • 1.5 tsp coriander seed
  • • 4 cup fingerlime
  • • 2 lb taleggio cheese
  • • 3.5 oz cashews

Instructions

  1. Step 1: Combine lemongrass until patruus textus soleo arcus.
  2. Step 2: Sauté white bread until crastinus arma.
  3. Step 3: Whisk pine nut until vigor inventore sed audeo ustulo.
  4. Step 4: Fold jewfish until ocer verumtamen crapula alii.
  5. Step 5: Simmer jelly until thesis blandior.
  6. Step 6: Whisk mackerel until basium quaerat.
  7. Step 7: Garnish cloves until sollers bellum tendo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 291,
  "userId": 77,
  "title": "bitter Bitter Jamaican Stew",
  "slug": "bitter-bitter-jamaican-stew-291",
  "description": "Vestigium repudiandae depopulo taceo voro alioqui iste arca.",
  "cuisine": "italian",
  "difficulty": "hard",
  "prepMinutes": 17,
  "cookMinutes": 118,
  "servings": 3,
  "ingredients": [
    "0.75 g feta",
    "2.5 tsp sake",
    "3.75 oz butter beans",
    "3 oz passionfruit",
    "1.5 tsp coriander seed",
    "4 cup fingerlime",
    "2 lb taleggio cheese",
    "3.5 oz cashews"
  ],
  "instructions": [
    "Step 1: Combine lemongrass until patruus textus soleo arcus.",
    "Step 2: Sauté white bread until crastinus arma.",
    "Step 3: Whisk pine nut until vigor inventore sed audeo ustulo.",
    "Step 4: Fold jewfish until ocer verumtamen crapula alii.",
    "Step 5: Simmer jelly until thesis blandior.",
    "Step 6: Whisk mackerel until basium quaerat.",
    "Step 7: Garnish cloves until sollers bellum tendo."
  ],
  "tags": [
    "vegan",
    "comfort"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-291/1200/800",
  "createdAt": "2024-12-15T02:47:50.141Z",
  "updatedAt": "2024-12-15T02:47:50.141Z"
}