example-data.com
Menu
Browse docs and collections

Overview

recipes / #294

zesty Pasta And Beans

zesty Pasta And Beans

quickveganvegetariangluten-free
Prep
60 min
Cook
63 min
Serves
5

Debeo facilis dolore conservo ipsum vomer avaritia atqui chirographum deduco. Sequi auctor admoveo spoliatio asperiores abbas ater temeritas torqueo coepi.

Ingredients

  • • 1.75 cup freekeh
  • • 1.75 oz rice flour
  • • 1.5 lb rice noodles
  • • 2.75 tbsp mint
  • • 4 tbsp blue swimmer crab
  • • 0.5 lb barley
  • • 1 oz garlic
  • • 3.25 lb lemon
  • • 2.25 oz mahlab
  • • 2.75 tbsp kidneys
  • • 1.25 tbsp sweet potato
  • • 3.5 cup apple juice concentrate

Instructions

  1. Step 1: Whisk ricemilk until uterque apud denego sui decet.
  2. Step 2: Stir buttermilk until repellendus abscido.
  3. Step 3: Season flaxseed until abutor esse suscipit iusto abeo.
  4. Step 4: Garnish fenugreek until coniecto iure cupressus defero.
  5. Step 5: Simmer red wine vinegar until verbera ustulo vito.
  6. Step 6: Simmer custard apples until delicate dolorem.
  7. Step 7: Season mustard until nisi vacuus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 294,
  "userId": 121,
  "title": "zesty Pasta And Beans",
  "slug": "zesty-pasta-and-beans-294",
  "description": "Debeo facilis dolore conservo ipsum vomer avaritia atqui chirographum deduco. Sequi auctor admoveo spoliatio asperiores abbas ater temeritas torqueo coepi.",
  "cuisine": "thai",
  "difficulty": "easy",
  "prepMinutes": 60,
  "cookMinutes": 63,
  "servings": 5,
  "ingredients": [
    "1.75 cup freekeh",
    "1.75 oz rice flour",
    "1.5 lb rice noodles",
    "2.75 tbsp mint",
    "4 tbsp blue swimmer crab",
    "0.5 lb barley",
    "1 oz garlic",
    "3.25 lb lemon",
    "2.25 oz mahlab",
    "2.75 tbsp kidneys",
    "1.25 tbsp sweet potato",
    "3.5 cup apple juice concentrate"
  ],
  "instructions": [
    "Step 1: Whisk ricemilk until uterque apud denego sui decet.",
    "Step 2: Stir buttermilk until repellendus abscido.",
    "Step 3: Season flaxseed until abutor esse suscipit iusto abeo.",
    "Step 4: Garnish fenugreek until coniecto iure cupressus defero.",
    "Step 5: Simmer red wine vinegar until verbera ustulo vito.",
    "Step 6: Simmer custard apples until delicate dolorem.",
    "Step 7: Season mustard until nisi vacuus."
  ],
  "tags": [
    "quick",
    "vegan",
    "vegetarian",
    "gluten-free"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-294/1200/800",
  "createdAt": "2025-02-28T07:33:26.130Z",
  "updatedAt": "2025-02-28T07:33:26.130Z"
}