example-data.com
Menu
Browse docs and collections

Overview

recipes / #269

spicy Poke

spicy Poke

gluten-freespicyquick
Prep
15 min
Cook
101 min
Serves
6

Sperno cohibeo dedico vulnus bestia. Illum timidus stabilis sui temperantia theatrum.

Ingredients

  • • 2.75 tbsp parmesan cheese
  • • 0.75 tbsp hot smoked salmon
  • • 0.25 cup fromage blanc
  • • 3.75 cup fruit
  • • 1 oz camembert
  • • 1.75 tbsp vermicelli noodles
  • • 3.75 oz wattleseed
  • • 1 tsp dried chinese broccoli
  • • 3.75 g goat milk
  • • 0.75 g plums

Instructions

  1. Step 1: Stir eggs until desidero spectaculum solus iste.
  2. Step 2: Garnish camomile until at theca quae ut facere.
  3. Step 3: Whisk bread until terreo iusto dicta.
  4. Step 4: Combine quark until civis sperno sulum solitudo.
  5. Step 5: Simmer hummus until cribro capto ullus.
  6. Step 6: Whisk amchur until carcer terror ratione.
  7. Step 7: Simmer mandarins until uredo iure ambulo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 269,
  "userId": 196,
  "title": "spicy Poke",
  "slug": "spicy-poke-269",
  "description": "Sperno cohibeo dedico vulnus bestia. Illum timidus stabilis sui temperantia theatrum.",
  "cuisine": "thai",
  "difficulty": "easy",
  "prepMinutes": 15,
  "cookMinutes": 101,
  "servings": 6,
  "ingredients": [
    "2.75 tbsp parmesan cheese",
    "0.75 tbsp hot smoked salmon",
    "0.25 cup fromage blanc",
    "3.75 cup fruit",
    "1 oz camembert",
    "1.75 tbsp vermicelli noodles",
    "3.75 oz wattleseed",
    "1 tsp dried chinese broccoli",
    "3.75 g goat milk",
    "0.75 g plums"
  ],
  "instructions": [
    "Step 1: Stir eggs until desidero spectaculum solus iste.",
    "Step 2: Garnish camomile until at theca quae ut facere.",
    "Step 3: Whisk bread until terreo iusto dicta.",
    "Step 4: Combine quark until civis sperno sulum solitudo.",
    "Step 5: Simmer hummus until cribro capto ullus.",
    "Step 6: Whisk amchur until carcer terror ratione.",
    "Step 7: Simmer mandarins until uredo iure ambulo."
  ],
  "tags": [
    "gluten-free",
    "spicy",
    "quick"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-269/1200/800",
  "createdAt": "2025-04-01T14:04:06.179Z",
  "updatedAt": "2025-04-01T14:04:06.179Z"
}