example-data.com
Menu
Browse docs and collections

Overview

recipes / #262

fluffy Bean Shoots Salad

fluffy Bean Shoots Salad

healthyspicygluten-free
Prep
55 min
Cook
38 min
Serves
6

Solio curatio apto ars absconditus depopulo. Aegrotatio theatrum volva concido ultra quae abscido tolero.

Ingredients

  • • 1.5 g chickory
  • • 3.5 tsp peppermint
  • • 3.5 oz raisin
  • • 3 oz white flour
  • • 1 lb olive oil
  • • 1.75 tsp rosemary
  • • 3.5 g white wine vinegar
  • • 1.5 lb oysters
  • • 4 cup passionfruit

Instructions

  1. Step 1: Garnish ajowan seed until clarus audio.
  2. Step 2: Garnish amchur until decipio curso.
  3. Step 3: Whisk potato flour until canonicus adulatio.
  4. Step 4: Combine blackberries until totidem tardus argentum villa creo.
  5. Step 5: Simmer snapper until solitudo terebro speciosus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 262,
  "userId": 171,
  "title": "fluffy Bean Shoots Salad",
  "slug": "fluffy-bean-shoots-salad-262",
  "description": "Solio curatio apto ars absconditus depopulo. Aegrotatio theatrum volva concido ultra quae abscido tolero.",
  "cuisine": "french",
  "difficulty": "hard",
  "prepMinutes": 55,
  "cookMinutes": 38,
  "servings": 6,
  "ingredients": [
    "1.5 g chickory",
    "3.5 tsp peppermint",
    "3.5 oz raisin",
    "3 oz white flour",
    "1 lb olive oil",
    "1.75 tsp rosemary",
    "3.5 g white wine vinegar",
    "1.5 lb oysters",
    "4 cup passionfruit"
  ],
  "instructions": [
    "Step 1: Garnish ajowan seed until clarus audio.",
    "Step 2: Garnish amchur until decipio curso.",
    "Step 3: Whisk potato flour until canonicus adulatio.",
    "Step 4: Combine blackberries until totidem tardus argentum villa creo.",
    "Step 5: Simmer snapper until solitudo terebro speciosus."
  ],
  "tags": [
    "healthy",
    "spicy",
    "gluten-free"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-262/1200/800",
  "createdAt": "2025-07-08T19:12:40.806Z",
  "updatedAt": "2025-07-08T19:12:40.806Z"
}