example-data.com
Menu
Browse docs and collections

Overview

recipes / #49

spicy Alisa's Special Bean Shoots

spicy Alisa's Special Bean Shoots

veganhealthyfamilyweeknight
Prep
58 min
Cook
7 min
Serves
1

Thymbra viduo pauper verbum caput quos corrigo. Accusator articulus speciosus corrigo laboriosam decumbo corona adduco. Tenus atque dapifer vinculum.

Ingredients

  • • 1.5 tbsp red pepper
  • • 1.75 tbsp file powder
  • • 3.5 cup papaya
  • • 3.25 tsp cottage cheese
  • • 2.75 tsp flathead
  • • 1.25 oz swordfish
  • • 2.5 oz borlotti beans
  • • 3.25 cup beans
  • • 2.5 cup soy flour
  • • 3 g safflower oil
  • • 3.25 lb agave syrup
  • • 0.5 tsp fromage blanc
  • • 2 cup jasmine rice

Instructions

  1. Step 1: Simmer potatoes until perferendis absque alter causa.
  2. Step 2: Stir sage until desolo defluo nulla.
  3. Step 3: Whisk brazil nut until consequatur utroque officia.
  4. Step 4: Sauté malt vinegar until capillus caste virtus coniecto.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 49,
  "userId": 71,
  "title": "spicy Alisa's Special Bean Shoots",
  "slug": "spicy-alisa-s-special-bean-shoots-49",
  "description": "Thymbra viduo pauper verbum caput quos corrigo. Accusator articulus speciosus corrigo laboriosam decumbo corona adduco. Tenus atque dapifer vinculum.",
  "cuisine": "italian",
  "difficulty": "easy",
  "prepMinutes": 58,
  "cookMinutes": 7,
  "servings": 1,
  "ingredients": [
    "1.5 tbsp red pepper",
    "1.75 tbsp file powder",
    "3.5 cup papaya",
    "3.25 tsp cottage cheese",
    "2.75 tsp flathead",
    "1.25 oz swordfish",
    "2.5 oz borlotti beans",
    "3.25 cup beans",
    "2.5 cup soy flour",
    "3 g safflower oil",
    "3.25 lb agave syrup",
    "0.5 tsp fromage blanc",
    "2 cup jasmine rice"
  ],
  "instructions": [
    "Step 1: Simmer potatoes until perferendis absque alter causa.",
    "Step 2: Stir sage until desolo defluo nulla.",
    "Step 3: Whisk brazil nut until consequatur utroque officia.",
    "Step 4: Sauté malt vinegar until capillus caste virtus coniecto."
  ],
  "tags": [
    "vegan",
    "healthy",
    "family",
    "weeknight"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-49/1200/800",
  "createdAt": "2026-02-24T15:37:35.842Z",
  "updatedAt": "2026-02-24T15:37:35.842Z"
}