example-data.com
Menu
Browse docs and collections

Overview

recipes / #265

salty Cavalo And Pear Tart

salty Cavalo And Pear Tart

spicylow-carbhigh-protein
Prep
8 min
Cook
157 min
Serves
7

Cultellus titulus volutabrum aeternus clementia sufficio bestia aegrotatio abutor bardus.

Ingredients

  • • 1 lb sweet chilli sauce
  • • 2 oz scallops
  • • 0.25 g avocado spread
  • • 2 tsp rice noodles
  • • 4 tbsp anchovies
  • • 1.5 tbsp hazelnut
  • • 0.75 g barramundi
  • • 1 g cardamom
  • • 3.25 cup oysters
  • • 3.5 lb quark
  • • 1 tbsp tofu
  • • 1.75 g kiwi berries
  • • 4 tsp kangaroo

Instructions

  1. Step 1: Stir bread until censura adfectus soleo certe.
  2. Step 2: Combine blood oranges until bibo decens spargo aqua.
  3. Step 3: Season beef stock until apud decerno.
  4. Step 4: Whisk bran until tardus versus deleo.
  5. Step 5: Fold nori until absorbeo adeo universe bestia aegrus.
  6. Step 6: Season hummus until sonitus alii.
  7. Step 7: Season red wine vinegar until cupressus derideo adsidue tabgo tenax.
  8. Step 8: Fold custard apples until aestus cogito.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 265,
  "userId": 221,
  "title": "salty Cavalo And Pear Tart",
  "slug": "salty-cavalo-and-pear-tart-265",
  "description": "Cultellus titulus volutabrum aeternus clementia sufficio bestia aegrotatio abutor bardus.",
  "cuisine": "french",
  "difficulty": "hard",
  "prepMinutes": 8,
  "cookMinutes": 157,
  "servings": 7,
  "ingredients": [
    "1 lb sweet chilli sauce",
    "2 oz scallops",
    "0.25 g avocado spread",
    "2 tsp rice noodles",
    "4 tbsp anchovies",
    "1.5 tbsp hazelnut",
    "0.75 g barramundi",
    "1 g cardamom",
    "3.25 cup oysters",
    "3.5 lb quark",
    "1 tbsp tofu",
    "1.75 g kiwi berries",
    "4 tsp kangaroo"
  ],
  "instructions": [
    "Step 1: Stir bread until censura adfectus soleo certe.",
    "Step 2: Combine blood oranges until bibo decens spargo aqua.",
    "Step 3: Season beef stock until apud decerno.",
    "Step 4: Whisk bran until tardus versus deleo.",
    "Step 5: Fold nori until absorbeo adeo universe bestia aegrus.",
    "Step 6: Season hummus until sonitus alii.",
    "Step 7: Season red wine vinegar until cupressus derideo adsidue tabgo tenax.",
    "Step 8: Fold custard apples until aestus cogito."
  ],
  "tags": [
    "spicy",
    "low-carb",
    "high-protein"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-265/1200/800",
  "createdAt": "2025-10-28T06:19:58.731Z",
  "updatedAt": "2025-10-28T06:19:58.731Z"
}