example-data.com
Menu
Browse docs and collections

Overview

recipes / #267

delicious Irish Spring Onions Soup

delicious Irish Spring Onions Soup

high-proteinquickdairy-free
Prep
27 min
Cook
78 min
Serves
4

Carmen averto sumptus tui suppono tondeo baiulus adopto harum pectus.

Ingredients

  • • 0.75 lb water
  • • 3.75 g jerusalem artichoke
  • • 1.25 cup rice noodles
  • • 4 cup chicken stock
  • • 3.25 tsp artichoke
  • • 1 g fenugreek
  • • 1 tsp sunflower oil

Instructions

  1. Step 1: Stir sour dough bread until modi dedico decretum degusto.
  2. Step 2: Combine goat milk until cruciamentum volaticus.
  3. Step 3: Stir peppers until acervus terror.
  4. Step 4: Whisk cos lettuce until cado tenus abbas canonicus sum.
  5. Step 5: Garnish butternut pumpkin until consectetur cariosus.
  6. Step 6: Simmer tofu until deleo cupiditas adflicto.
  7. Step 7: Simmer prunes until thema adaugeo bestia quae vapulus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 267,
  "userId": 134,
  "title": "delicious Irish Spring Onions Soup",
  "slug": "delicious-irish-spring-onions-soup-267",
  "description": "Carmen averto sumptus tui suppono tondeo baiulus adopto harum pectus.",
  "cuisine": "indian",
  "difficulty": "medium",
  "prepMinutes": 27,
  "cookMinutes": 78,
  "servings": 4,
  "ingredients": [
    "0.75 lb water",
    "3.75 g jerusalem artichoke",
    "1.25 cup rice noodles",
    "4 cup chicken stock",
    "3.25 tsp artichoke",
    "1 g fenugreek",
    "1 tsp sunflower oil"
  ],
  "instructions": [
    "Step 1: Stir sour dough bread until modi dedico decretum degusto.",
    "Step 2: Combine goat milk until cruciamentum volaticus.",
    "Step 3: Stir peppers until acervus terror.",
    "Step 4: Whisk cos lettuce until cado tenus abbas canonicus sum.",
    "Step 5: Garnish butternut pumpkin until consectetur cariosus.",
    "Step 6: Simmer tofu until deleo cupiditas adflicto.",
    "Step 7: Simmer prunes until thema adaugeo bestia quae vapulus."
  ],
  "tags": [
    "high-protein",
    "quick",
    "dairy-free"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-267/1200/800",
  "createdAt": "2025-09-27T10:23:31.970Z",
  "updatedAt": "2025-09-27T10:23:31.970Z"
}