example-data.com
Menu
Browse docs and collections

Overview

recipes / #286

fluffy Hummus

fluffy Hummus

weeknight
Prep
7 min
Cook
100 min
Serves
5

Expedita civitas explicabo molestias explicabo sperno. Creber antepono valde alienus tui cum venia degusto. Aufero video adstringo debeo cumque substantia numquam.

Ingredients

  • • 2.75 tbsp pear juice
  • • 2.75 tbsp wheatgrass juice
  • • 3.75 tsp agar
  • • 0.75 cup jicama
  • • 2.5 tbsp blue eye trevalla
  • • 3.5 tsp zucchini
  • • 2 oz spearmint
  • • 2.25 lb soy milk
  • • 2.25 cup calamari
  • • 1.25 tbsp red wine vinegar
  • • 1 tbsp chilli pepper

Instructions

  1. Step 1: Combine blueberries until xiphias vehemens censura porro calamitas.
  2. Step 2: Fold horseradish until confido vergo defero considero.
  3. Step 3: Combine raisin until dignissimos avaritia autem vallum.
  4. Step 4: Whisk cannellini beans until video deporto aetas adeo eaque.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 286,
  "userId": 77,
  "title": "fluffy Hummus",
  "slug": "fluffy-hummus-286",
  "description": "Expedita civitas explicabo molestias explicabo sperno. Creber antepono valde alienus tui cum venia degusto. Aufero video adstringo debeo cumque substantia numquam.",
  "cuisine": "vietnamese",
  "difficulty": "hard",
  "prepMinutes": 7,
  "cookMinutes": 100,
  "servings": 5,
  "ingredients": [
    "2.75 tbsp pear juice",
    "2.75 tbsp wheatgrass juice",
    "3.75 tsp agar",
    "0.75 cup jicama",
    "2.5 tbsp blue eye trevalla",
    "3.5 tsp zucchini",
    "2 oz spearmint",
    "2.25 lb soy milk",
    "2.25 cup calamari",
    "1.25 tbsp red wine vinegar",
    "1 tbsp chilli pepper"
  ],
  "instructions": [
    "Step 1: Combine blueberries until xiphias vehemens censura porro calamitas.",
    "Step 2: Fold horseradish until confido vergo defero considero.",
    "Step 3: Combine raisin until dignissimos avaritia autem vallum.",
    "Step 4: Whisk cannellini beans until video deporto aetas adeo eaque."
  ],
  "tags": [
    "weeknight"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-286/1200/800",
  "createdAt": "2026-01-16T21:25:32.164Z",
  "updatedAt": "2026-01-16T21:25:32.164Z"
}