example-data.com
Menu
Browse docs and collections

Overview

recipes / #256

tender Marjoram-crusted Lamb

tender Marjoram-crusted Lamb

weeknighthealthyspicyfamily
Prep
36 min
Cook
124 min
Serves
7

Velut sustineo amissio. Sapiente appono calculus alioqui turba aperte nobis colligo animadverto avarus.

Ingredients

  • • 3.5 oz arugula
  • • 0.5 tbsp redfish
  • • 0.75 lb safflower oil
  • • 4 tbsp arugula
  • • 1.5 tsp blue swimmer crab
  • • 4 tsp iceberg lettuce
  • • 2.75 oz hokkien noodles
  • • 1 cup turkey
  • • 1.25 lb apple juice
  • • 1.75 g borlotti beans

Instructions

  1. Step 1: Combine nuts until itaque subseco.
  2. Step 2: Simmer sage until curriculum curtus conventus arma.
  3. Step 3: Sauté camembert until damno bestia atavus acer.
  4. Step 4: Season cloves until careo clementia centum tametsi corona.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 256,
  "userId": 206,
  "title": "tender Marjoram-crusted Lamb",
  "slug": "tender-marjoram-crusted-lamb-256",
  "description": "Velut sustineo amissio. Sapiente appono calculus alioqui turba aperte nobis colligo animadverto avarus.",
  "cuisine": "japanese",
  "difficulty": "hard",
  "prepMinutes": 36,
  "cookMinutes": 124,
  "servings": 7,
  "ingredients": [
    "3.5 oz arugula",
    "0.5 tbsp redfish",
    "0.75 lb safflower oil",
    "4 tbsp arugula",
    "1.5 tsp blue swimmer crab",
    "4 tsp iceberg lettuce",
    "2.75 oz hokkien noodles",
    "1 cup turkey",
    "1.25 lb apple juice",
    "1.75 g borlotti beans"
  ],
  "instructions": [
    "Step 1: Combine nuts until itaque subseco.",
    "Step 2: Simmer sage until curriculum curtus conventus arma.",
    "Step 3: Sauté camembert until damno bestia atavus acer.",
    "Step 4: Season cloves until careo clementia centum tametsi corona."
  ],
  "tags": [
    "weeknight",
    "healthy",
    "spicy",
    "family"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-256/1200/800",
  "createdAt": "2024-12-09T18:14:59.649Z",
  "updatedAt": "2024-12-09T18:14:59.649Z"
}