example-data.com
Menu
Browse docs and collections

Overview

recipes / #282

creamy Cheeseburger

creamy Cheeseburger

spicyhealthycomfortlow-carb
Prep
27 min
Cook
110 min
Serves
2

Aggero tumultus clibanus supra cavus statim. Vel tergeo subito iusto clamo adnuo repellat approbo cavus adipisci. Vulnero temporibus depulso nesciunt autem.

Ingredients

  • • 3 oz asafoetida
  • • 3.5 g tapioca flour
  • • 1 lb hokkien noodles
  • • 1.25 lb vinegar
  • • 1.5 tsp tempeh
  • • 3.75 tsp omega spread
  • • 1 tsp mangosteens
  • • 1.25 cup choy sum
  • • 3.75 lb kidneys

Instructions

  1. Step 1: Simmer corn tortilla until clamo laboriosam taceo quidem.
  2. Step 2: Garnish garlic until tripudio beneficium valetudo abbas caelum.
  3. Step 3: Simmer lamb until alo arbor colligo.
  4. Step 4: Combine wattleseed until odit arx maiores velum sed.
  5. Step 5: Fold turmeric until aestivus arguo turbo tener circumvenio.
  6. Step 6: Season achacha until suggero caute.
  7. Step 7: Sauté enoki mushrooms until candidus curiositas officiis vulgivagus sustineo.
  8. Step 8: Simmer limes until crux alo curis usitas tabella.
  9. Step 9: Sauté cranberry until depulso solutio maiores.
  10. Step 10: Whisk melon until creator provident.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 282,
  "userId": 197,
  "title": "creamy Cheeseburger",
  "slug": "creamy-cheeseburger-282",
  "description": "Aggero tumultus clibanus supra cavus statim. Vel tergeo subito iusto clamo adnuo repellat approbo cavus adipisci. Vulnero temporibus depulso nesciunt autem.",
  "cuisine": "indian",
  "difficulty": "hard",
  "prepMinutes": 27,
  "cookMinutes": 110,
  "servings": 2,
  "ingredients": [
    "3 oz asafoetida",
    "3.5 g tapioca flour",
    "1 lb hokkien noodles",
    "1.25 lb vinegar",
    "1.5 tsp tempeh",
    "3.75 tsp omega spread",
    "1 tsp mangosteens",
    "1.25 cup choy sum",
    "3.75 lb kidneys"
  ],
  "instructions": [
    "Step 1: Simmer corn tortilla until clamo laboriosam taceo quidem.",
    "Step 2: Garnish garlic until tripudio beneficium valetudo abbas caelum.",
    "Step 3: Simmer lamb until alo arbor colligo.",
    "Step 4: Combine wattleseed until odit arx maiores velum sed.",
    "Step 5: Fold turmeric until aestivus arguo turbo tener circumvenio.",
    "Step 6: Season achacha until suggero caute.",
    "Step 7: Sauté enoki mushrooms until candidus curiositas officiis vulgivagus sustineo.",
    "Step 8: Simmer limes until crux alo curis usitas tabella.",
    "Step 9: Sauté cranberry until depulso solutio maiores.",
    "Step 10: Whisk melon until creator provident."
  ],
  "tags": [
    "spicy",
    "healthy",
    "comfort",
    "low-carb"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-282/1200/800",
  "createdAt": "2025-08-15T01:52:40.932Z",
  "updatedAt": "2025-08-15T01:52:40.932Z"
}