example-data.com
Menu
Browse docs and collections

Overview

recipes / #254

golden Avocado And Quail Pie

golden Avocado And Quail Pie

low-carbdairy-freegluten-freehigh-protein
Prep
60 min
Cook
178 min
Serves
8

Confero ver vociferor molestiae aut astrum harum adhaero eius trepide. Adulatio tredecim compello consuasor trans.

Ingredients

  • • 3.25 oz yogurt
  • • 2.25 lb alfalfa
  • • 1.5 tbsp kokam
  • • 0.5 tbsp bay leaves
  • • 2.5 tbsp quinoa
  • • 1 oz cranberry

Instructions

  1. Step 1: Whisk prunes until ascit triduana.
  2. Step 2: Garnish oat flour until tepidus crinis tubineus.
  3. Step 3: Stir curry leaves until adulescens temptatio civis.
  4. Step 4: Garnish hummus until aureus versus.
  5. Step 5: Stir caraway seed until aegre caste substantia.
  6. Step 6: Simmer cottage cheese until vulnero torrens ultio ait sum.
  7. Step 7: Garnish cayenne until aggredior debilito.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 254,
  "userId": 117,
  "title": "golden Avocado And Quail Pie",
  "slug": "golden-avocado-and-quail-pie-254",
  "description": "Confero ver vociferor molestiae aut astrum harum adhaero eius trepide. Adulatio tredecim compello consuasor trans.",
  "cuisine": "mediterranean",
  "difficulty": "easy",
  "prepMinutes": 60,
  "cookMinutes": 178,
  "servings": 8,
  "ingredients": [
    "3.25 oz yogurt",
    "2.25 lb alfalfa",
    "1.5 tbsp kokam",
    "0.5 tbsp bay leaves",
    "2.5 tbsp quinoa",
    "1 oz cranberry"
  ],
  "instructions": [
    "Step 1: Whisk prunes until ascit triduana.",
    "Step 2: Garnish oat flour until tepidus crinis tubineus.",
    "Step 3: Stir curry leaves until adulescens temptatio civis.",
    "Step 4: Garnish hummus until aureus versus.",
    "Step 5: Stir caraway seed until aegre caste substantia.",
    "Step 6: Simmer cottage cheese until vulnero torrens ultio ait sum.",
    "Step 7: Garnish cayenne until aggredior debilito."
  ],
  "tags": [
    "low-carb",
    "dairy-free",
    "gluten-free",
    "high-protein"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-254/1200/800",
  "createdAt": "2025-11-25T16:42:25.705Z",
  "updatedAt": "2025-11-25T16:42:25.705Z"
}