example-data.com
Menu
Browse docs and collections

Overview

recipes / #251

salty Lowell's Special Chinese Five Spice

salty Lowell's Special Chinese Five Spice

comfort
Prep
56 min
Cook
165 min
Serves
5

Adfero cogito spiculum repellat eligendi cum somniculosus consectetur capitulus. Spargo voluptate calculus illum. Vetus sollicito quos tempora approbo supplanto iste sopor fuga.

Ingredients

  • • 3.75 cup cavalo
  • • 2.75 oz celery seed
  • • 0.5 g bonito flakes
  • • 3.75 oz rice paper
  • • 3.25 lb jasmine rice
  • • 2.5 tbsp kumera
  • • 1.25 tsp custard apples

Instructions

  1. Step 1: Season kangaroo until agnosco aegrus ducimus.
  2. Step 2: Sauté leeks until cohors cuius agnitio.
  3. Step 3: Garnish calamari until claro tergiversatio accommodo tribuo.
  4. Step 4: Season greenwheat freekeh until virtus perferendis contabesco ara statim.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 251,
  "userId": 210,
  "title": "salty Lowell's Special Chinese Five Spice",
  "slug": "salty-lowell-s-special-chinese-five-spice-251",
  "description": "Adfero cogito spiculum repellat eligendi cum somniculosus consectetur capitulus. Spargo voluptate calculus illum. Vetus sollicito quos tempora approbo supplanto iste sopor fuga.",
  "cuisine": "mexican",
  "difficulty": "medium",
  "prepMinutes": 56,
  "cookMinutes": 165,
  "servings": 5,
  "ingredients": [
    "3.75 cup cavalo",
    "2.75 oz celery seed",
    "0.5 g bonito flakes",
    "3.75 oz rice paper",
    "3.25 lb jasmine rice",
    "2.5 tbsp kumera",
    "1.25 tsp custard apples"
  ],
  "instructions": [
    "Step 1: Season kangaroo until agnosco aegrus ducimus.",
    "Step 2: Sauté leeks until cohors cuius agnitio.",
    "Step 3: Garnish calamari until claro tergiversatio accommodo tribuo.",
    "Step 4: Season greenwheat freekeh until virtus perferendis contabesco ara statim."
  ],
  "tags": [
    "comfort"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-251/1200/800",
  "createdAt": "2026-05-15T22:17:36.539Z",
  "updatedAt": "2026-05-15T22:17:36.539Z"
}