example-data.com
Menu
Browse docs and collections

Overview

recipes / #263

golden Onion Salad

golden Onion Salad

familyvegan
Prep
53 min
Cook
76 min
Serves
5

Amaritudo aer creo capio ipsa clamo.

Ingredients

  • • 3 tbsp rice flour
  • • 4 lb fenugreek
  • • 2.75 cup goat milk
  • • 2.5 oz bean sprouts
  • • 0.25 oz turnips
  • • 3.5 g asparagus
  • • 3 tbsp vanilla beans
  • • 3.25 lb poppy seed
  • • 1.5 tbsp bok choy
  • • 0.25 cup yoghurt
  • • 1.5 lb white rice
  • • 3.25 g buckwheat flour
  • • 3.75 tsp file powder

Instructions

  1. Step 1: Fold kiwi fruit until voluntarius cumque crinis depulso.
  2. Step 2: Simmer oregano until urbanus vesica tener venustas debitis.
  3. Step 3: Combine kecap manis until tibi verus.
  4. Step 4: Season pear until appono vulgivagus aliqua ex tertius.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 263,
  "userId": 147,
  "title": "golden Onion Salad",
  "slug": "golden-onion-salad-263",
  "description": "Amaritudo aer creo capio ipsa clamo.",
  "cuisine": "japanese",
  "difficulty": "hard",
  "prepMinutes": 53,
  "cookMinutes": 76,
  "servings": 5,
  "ingredients": [
    "3 tbsp rice flour",
    "4 lb fenugreek",
    "2.75 cup goat milk",
    "2.5 oz bean sprouts",
    "0.25 oz turnips",
    "3.5 g asparagus",
    "3 tbsp vanilla beans",
    "3.25 lb poppy seed",
    "1.5 tbsp bok choy",
    "0.25 cup yoghurt",
    "1.5 lb white rice",
    "3.25 g buckwheat flour",
    "3.75 tsp file powder"
  ],
  "instructions": [
    "Step 1: Fold kiwi fruit until voluntarius cumque crinis depulso.",
    "Step 2: Simmer oregano until urbanus vesica tener venustas debitis.",
    "Step 3: Combine kecap manis until tibi verus.",
    "Step 4: Season pear until appono vulgivagus aliqua ex tertius."
  ],
  "tags": [
    "family",
    "vegan"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-263/1200/800",
  "createdAt": "2025-11-07T01:44:49.017Z",
  "updatedAt": "2025-11-07T01:44:49.017Z"
}