example-data.com
Menu
Browse docs and collections

Overview

recipes / #127

tender Pizza

tender Pizza

comforthigh-proteinweeknightlow-carb
Prep
57 min
Cook
157 min
Serves
4

Theca saepe deludo aiunt patior velit acies reiciendis tandem.

Ingredients

  • • 2.75 tsp ajowan seed
  • • 3 oz soy flour
  • • 3 oz apricots
  • • 3.25 lb dashi
  • • 2.75 oz william pear
  • • 3.25 tbsp edamame
  • • 1.75 oz bulghur
  • • 1.5 cup eggs
  • • 3.25 lb celery
  • • 2.25 cup strawberries
  • • 2.5 oz bacon
  • • 1.25 oz camellia tea oil
  • • 1 lb grapes

Instructions

  1. Step 1: Stir sprouts until appello deorsum dicta caput conicio.
  2. Step 2: Simmer kale until cenaculum vir umerus alias dolorum.
  3. Step 3: Season eggs until depereo sint annus terra.
  4. Step 4: Whisk parsnip until torrens approbo coniecto.
  5. Step 5: Sauté pear juice until cubitum creptio ultra cunae.
  6. Step 6: Whisk caraway seed until laboriosam cruciamentum allatus solio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 127,
  "userId": 247,
  "title": "tender Pizza",
  "slug": "tender-pizza-127",
  "description": "Theca saepe deludo aiunt patior velit acies reiciendis tandem.",
  "cuisine": "thai",
  "difficulty": "easy",
  "prepMinutes": 57,
  "cookMinutes": 157,
  "servings": 4,
  "ingredients": [
    "2.75 tsp ajowan seed",
    "3 oz soy flour",
    "3 oz apricots",
    "3.25 lb dashi",
    "2.75 oz william pear",
    "3.25 tbsp edamame",
    "1.75 oz bulghur",
    "1.5 cup eggs",
    "3.25 lb celery",
    "2.25 cup strawberries",
    "2.5 oz bacon",
    "1.25 oz camellia tea oil",
    "1 lb grapes"
  ],
  "instructions": [
    "Step 1: Stir sprouts until appello deorsum dicta caput conicio.",
    "Step 2: Simmer kale until cenaculum vir umerus alias dolorum.",
    "Step 3: Season eggs until depereo sint annus terra.",
    "Step 4: Whisk parsnip until torrens approbo coniecto.",
    "Step 5: Sauté pear juice until cubitum creptio ultra cunae.",
    "Step 6: Whisk caraway seed until laboriosam cruciamentum allatus solio."
  ],
  "tags": [
    "comfort",
    "high-protein",
    "weeknight",
    "low-carb"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-127/1200/800",
  "createdAt": "2024-07-30T17:04:43.782Z",
  "updatedAt": "2024-07-30T17:04:43.782Z"
}