example-data.com
Menu
Browse docs and collections

Overview

recipes / #58

savory Massaman Curry

savory Massaman Curry

familyveganvegetarian
Prep
55 min
Cook
14 min
Serves
7

Defessus adnuo fuga. Fugiat ut vito adinventitias vapulus cervus alter.

Ingredients

  • • 3.5 tbsp spelt bread
  • • 0.5 lb beef stock
  • • 3.25 oz red cabbage
  • • 1.25 tsp lamb
  • • 3.25 tsp milk chocolate
  • • 1.75 tsp celery seed
  • • 1.75 oz arrowroot
  • • 2.25 tsp maple syrup
  • • 0.25 tsp peppermint
  • • 0.5 tbsp mustard
  • • 4 lb asian noodles
  • • 1.25 tbsp tea oil

Instructions

  1. Step 1: Season cream cheese until sed conqueror minima.
  2. Step 2: Garnish cos lettuce until stipes pariatur aegrus vetus via.
  3. Step 3: Stir endive until demum sui.
  4. Step 4: Fold quinoa until ascisco bonus aequus.
  5. Step 5: Whisk passionfruit until aestus defessus varietas distinctio subnecto.
  6. Step 6: Simmer cornichons until sui copia terreo.
  7. Step 7: Fold chinese cabbage until conculco alo vulgo contego denuncio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 58,
  "userId": 154,
  "title": "savory Massaman Curry",
  "slug": "savory-massaman-curry-58",
  "description": "Defessus adnuo fuga. Fugiat ut vito adinventitias vapulus cervus alter.",
  "cuisine": "chinese",
  "difficulty": "easy",
  "prepMinutes": 55,
  "cookMinutes": 14,
  "servings": 7,
  "ingredients": [
    "3.5 tbsp spelt bread",
    "0.5 lb beef stock",
    "3.25 oz red cabbage",
    "1.25 tsp lamb",
    "3.25 tsp milk chocolate",
    "1.75 tsp celery seed",
    "1.75 oz arrowroot",
    "2.25 tsp maple syrup",
    "0.25 tsp peppermint",
    "0.5 tbsp mustard",
    "4 lb asian noodles",
    "1.25 tbsp tea oil"
  ],
  "instructions": [
    "Step 1: Season cream cheese until sed conqueror minima.",
    "Step 2: Garnish cos lettuce until stipes pariatur aegrus vetus via.",
    "Step 3: Stir endive until demum sui.",
    "Step 4: Fold quinoa until ascisco bonus aequus.",
    "Step 5: Whisk passionfruit until aestus defessus varietas distinctio subnecto.",
    "Step 6: Simmer cornichons until sui copia terreo.",
    "Step 7: Fold chinese cabbage until conculco alo vulgo contego denuncio."
  ],
  "tags": [
    "family",
    "vegan",
    "vegetarian"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-58/1200/800",
  "createdAt": "2026-02-19T18:06:26.636Z",
  "updatedAt": "2026-02-19T18:06:26.636Z"
}