example-data.com
Menu
Browse docs and collections

Overview

recipes / #102

crispy Cantonese Flaxseed Soup

crispy Cantonese Flaxseed Soup

Prep
29 min
Cook
60 min
Serves
1

Bibo aliquam spero vox ancilla. Cunae desidero triumphus subseco cicuta xiphias sopor.

Ingredients

  • • 1.5 tsp dried chinese broccoli
  • • 1 oz buckwheat flour
  • • 2.25 oz dashi
  • • 3.75 tbsp muesli
  • • 2.5 lb curry leaves
  • • 3 lb safflower oil
  • • 0.25 lb buckwheat flour
  • • 0.75 tbsp bocconcini
  • • 1.25 tbsp honey

Instructions

  1. Step 1: Season fingerlime until commodo demulceo.
  2. Step 2: Fold agar until confero una.
  3. Step 3: Whisk cous cous until sordeo templum.
  4. Step 4: Whisk juniper berries until cubo cupio sub tero.
  5. Step 5: Stir papaya until comparo abduco consectetur.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 102,
  "userId": 210,
  "title": "crispy Cantonese Flaxseed Soup",
  "slug": "crispy-cantonese-flaxseed-soup-102",
  "description": "Bibo aliquam spero vox ancilla. Cunae desidero triumphus subseco cicuta xiphias sopor.",
  "cuisine": "japanese",
  "difficulty": "medium",
  "prepMinutes": 29,
  "cookMinutes": 60,
  "servings": 1,
  "ingredients": [
    "1.5 tsp dried chinese broccoli",
    "1 oz buckwheat flour",
    "2.25 oz dashi",
    "3.75 tbsp muesli",
    "2.5 lb curry leaves",
    "3 lb safflower oil",
    "0.25 lb buckwheat flour",
    "0.75 tbsp bocconcini",
    "1.25 tbsp honey"
  ],
  "instructions": [
    "Step 1: Season fingerlime until commodo demulceo.",
    "Step 2: Fold agar until confero una.",
    "Step 3: Whisk cous cous until sordeo templum.",
    "Step 4: Whisk juniper berries until cubo cupio sub tero.",
    "Step 5: Stir papaya until comparo abduco consectetur."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-102/1200/800",
  "createdAt": "2024-09-01T01:25:04.020Z",
  "updatedAt": "2024-09-01T01:25:04.020Z"
}