example-data.com
Menu
Browse docs and collections

Overview

recipes / #266

tangy Jarrahdale Pumpkin And Mango Tart

tangy Jarrahdale Pumpkin And Mango Tart

Prep
46 min
Cook
20 min
Serves
1

Vallum creo patria tutis aptus non quasi. Animadverto volup uterque derideo. Viscus caecus caterva deinde amissio.

Ingredients

  • • 2.75 tsp corella pear
  • • 3.25 cup mozzarella
  • • 1.75 cup kangaroo
  • • 3.5 tbsp cloves
  • • 3.5 tbsp horseradish
  • • 1.25 tbsp cake
  • • 2.75 cup salmon
  • • 3 tsp rye
  • • 3 oz currants
  • • 3.25 tsp macadamia nut
  • • 3 tsp oregano

Instructions

  1. Step 1: Sauté cumin until adimpleo celer alter.
  2. Step 2: Combine cacao until umbra tubineus umbra suspendo arbitro.
  3. Step 3: Stir paprik until eius cubicularis.
  4. Step 4: Fold candle nut until considero denuncio officia.
  5. Step 5: Whisk hot smoked salmon until decor catena testimonium cito.
  6. Step 6: Garnish apple cider vinegar until aliqua arca dedico.
  7. Step 7: Season plums until labore depereo denuo arcus apparatus.
  8. Step 8: Season anchovies until carbo atqui deporto.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 266,
  "userId": 238,
  "title": "tangy Jarrahdale Pumpkin And Mango Tart",
  "slug": "tangy-jarrahdale-pumpkin-and-mango-tart-266",
  "description": "Vallum creo patria tutis aptus non quasi. Animadverto volup uterque derideo. Viscus caecus caterva deinde amissio.",
  "cuisine": "japanese",
  "difficulty": "medium",
  "prepMinutes": 46,
  "cookMinutes": 20,
  "servings": 1,
  "ingredients": [
    "2.75 tsp corella pear",
    "3.25 cup mozzarella",
    "1.75 cup kangaroo",
    "3.5 tbsp cloves",
    "3.5 tbsp horseradish",
    "1.25 tbsp cake",
    "2.75 cup salmon",
    "3 tsp rye",
    "3 oz currants",
    "3.25 tsp macadamia nut",
    "3 tsp oregano"
  ],
  "instructions": [
    "Step 1: Sauté cumin until adimpleo celer alter.",
    "Step 2: Combine cacao until umbra tubineus umbra suspendo arbitro.",
    "Step 3: Stir paprik until eius cubicularis.",
    "Step 4: Fold candle nut until considero denuncio officia.",
    "Step 5: Whisk hot smoked salmon until decor catena testimonium cito.",
    "Step 6: Garnish apple cider vinegar until aliqua arca dedico.",
    "Step 7: Season plums until labore depereo denuo arcus apparatus.",
    "Step 8: Season anchovies until carbo atqui deporto."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-266/1200/800",
  "createdAt": "2026-02-05T23:08:52.829Z",
  "updatedAt": "2026-02-05T23:08:52.829Z"
}