example-data.com
Menu
Browse docs and collections

Overview

recipes / #264

spicy French Toast

spicy French Toast

veganhigh-proteinspicygluten-free
Prep
32 min
Cook
156 min
Serves
7

Sponte viduo tergiversatio confugo fuga auditor tutamen possimus cogo. Sortitus vesper trepide concedo creo volo aegre uberrime. Ad statua civis tumultus corrupti umquam verumtamen aegrotatio aeger.

Ingredients

  • • 3.5 oz mackerel
  • • 3 tbsp taleggio cheese
  • • 2.5 lb bocconcini
  • • 3.25 tsp goat milk
  • • 2 oz buckwheat
  • • 3.25 oz black eyed beans
  • • 0.75 oz prunes
  • • 1 cup sweet potato
  • • 3.5 g marjoram
  • • 2 tbsp william pear
  • • 1 tsp macadamia oil
  • • 1 g lime leaves
  • • 1.5 oz coriander seed

Instructions

  1. Step 1: Sauté sunflower seeds until subiungo temperantia cornu dolores.
  2. Step 2: Simmer bran until triduana iusto conventus.
  3. Step 3: Fold thyme until canonicus optio sapiente appono sint.
  4. Step 4: Garnish squash until aurum commodo alveus.
  5. Step 5: Garnish green pepper until cunae crebro vulnus templum.
  6. Step 6: Whisk pear until succurro angelus ventus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 264,
  "userId": 223,
  "title": "spicy French Toast",
  "slug": "spicy-french-toast-264",
  "description": "Sponte viduo tergiversatio confugo fuga auditor tutamen possimus cogo. Sortitus vesper trepide concedo creo volo aegre uberrime. Ad statua civis tumultus corrupti umquam verumtamen aegrotatio aeger.",
  "cuisine": "american",
  "difficulty": "hard",
  "prepMinutes": 32,
  "cookMinutes": 156,
  "servings": 7,
  "ingredients": [
    "3.5 oz mackerel",
    "3 tbsp taleggio cheese",
    "2.5 lb bocconcini",
    "3.25 tsp goat milk",
    "2 oz buckwheat",
    "3.25 oz black eyed beans",
    "0.75 oz prunes",
    "1 cup sweet potato",
    "3.5 g marjoram",
    "2 tbsp william pear",
    "1 tsp macadamia oil",
    "1 g lime leaves",
    "1.5 oz coriander seed"
  ],
  "instructions": [
    "Step 1: Sauté sunflower seeds until subiungo temperantia cornu dolores.",
    "Step 2: Simmer bran until triduana iusto conventus.",
    "Step 3: Fold thyme until canonicus optio sapiente appono sint.",
    "Step 4: Garnish squash until aurum commodo alveus.",
    "Step 5: Garnish green pepper until cunae crebro vulnus templum.",
    "Step 6: Whisk pear until succurro angelus ventus."
  ],
  "tags": [
    "vegan",
    "high-protein",
    "spicy",
    "gluten-free"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-264/1200/800",
  "createdAt": "2026-04-28T06:10:41.232Z",
  "updatedAt": "2026-04-28T06:10:41.232Z"
}