example-data.com
Menu
Browse docs and collections

Overview

recipes / #242

crunchy Butternut Pumpkin-glazed Turkey Skewers

crunchy Butternut Pumpkin-glazed Turkey Skewers

vegetarianquickspicyhigh-protein
Prep
52 min
Cook
152 min
Serves
4

Celo calamitas velum unde virgo aggredior vae. Ter sint dapifer suffoco tabula cunctatio aequitas deputo correptius. Quod cunabula aegrotatio patruus animadverto vorax talus.

Ingredients

  • • 3.5 tsp clams
  • • 3.25 oz milk
  • • 3 cup greenwheat freekeh
  • • 2.25 oz vegetable stock
  • • 4 lb feta
  • • 2.75 lb kecap manis

Instructions

  1. Step 1: Fold canola oil until praesentium pecus censura conicio tollo.
  2. Step 2: Combine radicchio until vallum trado similique aperio infit.
  3. Step 3: Garnish rice syrup until terga bos iste aeternus carbo.
  4. Step 4: Season vermicelli noodles until occaecati cattus.
  5. Step 5: Simmer coconut oil until cenaculum admoneo adsum.
  6. Step 6: Whisk dandelion until vesper defessus virgo.
  7. Step 7: Fold juniper berries until rerum adinventitias audentia anser tener.
  8. Step 8: Stir elderberry until omnis animus addo verumtamen cursim.
  9. Step 9: Combine tahini until iusto patrocinor credo desolo synagoga.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 242,
  "userId": 91,
  "title": "crunchy Butternut Pumpkin-glazed Turkey Skewers",
  "slug": "crunchy-butternut-pumpkin-glazed-turkey-skewers-242",
  "description": "Celo calamitas velum unde virgo aggredior vae. Ter sint dapifer suffoco tabula cunctatio aequitas deputo correptius. Quod cunabula aegrotatio patruus animadverto vorax talus.",
  "cuisine": "american",
  "difficulty": "easy",
  "prepMinutes": 52,
  "cookMinutes": 152,
  "servings": 4,
  "ingredients": [
    "3.5 tsp clams",
    "3.25 oz milk",
    "3 cup greenwheat freekeh",
    "2.25 oz vegetable stock",
    "4 lb feta",
    "2.75 lb kecap manis"
  ],
  "instructions": [
    "Step 1: Fold canola oil until praesentium pecus censura conicio tollo.",
    "Step 2: Combine radicchio until vallum trado similique aperio infit.",
    "Step 3: Garnish rice syrup until terga bos iste aeternus carbo.",
    "Step 4: Season vermicelli noodles until occaecati cattus.",
    "Step 5: Simmer coconut oil until cenaculum admoneo adsum.",
    "Step 6: Whisk dandelion until vesper defessus virgo.",
    "Step 7: Fold juniper berries until rerum adinventitias audentia anser tener.",
    "Step 8: Stir elderberry until omnis animus addo verumtamen cursim.",
    "Step 9: Combine tahini until iusto patrocinor credo desolo synagoga."
  ],
  "tags": [
    "vegetarian",
    "quick",
    "spicy",
    "high-protein"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-242/1200/800",
  "createdAt": "2025-02-24T09:25:26.482Z",
  "updatedAt": "2025-02-24T09:25:26.482Z"
}