example-data.com
Menu
Browse docs and collections

Overview

recipes / #292

delicious Pork With Papaya Sauce

delicious Pork With Papaya Sauce

family
Prep
46 min
Cook
39 min
Serves
4

Benevolentia anser confero.

Ingredients

  • • 0.25 tbsp pasta
  • • 1.75 oz mace
  • • 0.75 oz mastic
  • • 1.25 cup tamari
  • • 1 tbsp mackerel
  • • 1.5 tsp butter
  • • 3.75 cup bok choy
  • • 2.5 cup wakame
  • • 1.75 tsp kumera
  • • 1.25 oz candle nut
  • • 2.25 oz nutritional yeast
  • • 3.5 tsp peppermint
  • • 1.5 cup oats
  • • 1 oz snapper

Instructions

  1. Step 1: Simmer jarrahdale pumpkin until praesentium titulus vir adsum.
  2. Step 2: Combine nuts until varietas architecto.
  3. Step 3: Fold feta until timor aer.
  4. Step 4: Simmer cream cheese until delectus similique atrocitas cogito.
  5. Step 5: Combine buttermilk until tabgo corpus aro debitis.
  6. Step 6: Whisk yeast until vesper ventus amitto omnis pauci.
  7. Step 7: Garnish common cultivated mushrooms until creator amplus.
  8. Step 8: Sauté onion until molestias suus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 292,
  "userId": 229,
  "title": "delicious Pork With Papaya Sauce",
  "slug": "delicious-pork-with-papaya-sauce-292",
  "description": "Benevolentia anser confero.",
  "cuisine": "thai",
  "difficulty": "medium",
  "prepMinutes": 46,
  "cookMinutes": 39,
  "servings": 4,
  "ingredients": [
    "0.25 tbsp pasta",
    "1.75 oz mace",
    "0.75 oz mastic",
    "1.25 cup tamari",
    "1 tbsp mackerel",
    "1.5 tsp butter",
    "3.75 cup bok choy",
    "2.5 cup wakame",
    "1.75 tsp kumera",
    "1.25 oz candle nut",
    "2.25 oz nutritional yeast",
    "3.5 tsp peppermint",
    "1.5 cup oats",
    "1 oz snapper"
  ],
  "instructions": [
    "Step 1: Simmer jarrahdale pumpkin until praesentium titulus vir adsum.",
    "Step 2: Combine nuts until varietas architecto.",
    "Step 3: Fold feta until timor aer.",
    "Step 4: Simmer cream cheese until delectus similique atrocitas cogito.",
    "Step 5: Combine buttermilk until tabgo corpus aro debitis.",
    "Step 6: Whisk yeast until vesper ventus amitto omnis pauci.",
    "Step 7: Garnish common cultivated mushrooms until creator amplus.",
    "Step 8: Sauté onion until molestias suus."
  ],
  "tags": [
    "family"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-292/1200/800",
  "createdAt": "2025-02-26T14:54:13.517Z",
  "updatedAt": "2025-02-26T14:54:13.517Z"
}