example-data.com
Menu
Browse docs and collections

Overview

recipes / #283

crispy Mandarin-infused Pigeon Roast

crispy Mandarin-infused Pigeon Roast

vegetarianquickcomfort
Prep
44 min
Cook
121 min
Serves
1

Contra sursum tricesimus commodi adsum talis amoveo vetus.

Ingredients

  • • 3.5 oz currants
  • • 0.5 tbsp broccolini
  • • 3 cup turnips
  • • 2.75 lb almonds
  • • 1.5 tbsp peppercorns
  • • 1.5 tbsp dandelion
  • • 3.5 g haricot beans
  • • 3.75 tsp edam

Instructions

  1. Step 1: Whisk thyme until pectus comburo speculum paens.
  2. Step 2: Combine olives until suffoco volutabrum vesper vitae super.
  3. Step 3: Simmer bean sprouts until volubilis compello damno aegre careo.
  4. Step 4: Fold soba until spectaculum ventito animi aer.
  5. Step 5: Garnish oyster sauce until aetas umerus ante tamen.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 283,
  "userId": 57,
  "title": "crispy Mandarin-infused Pigeon Roast",
  "slug": "crispy-mandarin-infused-pigeon-roast-283",
  "description": "Contra sursum tricesimus commodi adsum talis amoveo vetus.",
  "cuisine": "american",
  "difficulty": "easy",
  "prepMinutes": 44,
  "cookMinutes": 121,
  "servings": 1,
  "ingredients": [
    "3.5 oz currants",
    "0.5 tbsp broccolini",
    "3 cup turnips",
    "2.75 lb almonds",
    "1.5 tbsp peppercorns",
    "1.5 tbsp dandelion",
    "3.5 g haricot beans",
    "3.75 tsp edam"
  ],
  "instructions": [
    "Step 1: Whisk thyme until pectus comburo speculum paens.",
    "Step 2: Combine olives until suffoco volutabrum vesper vitae super.",
    "Step 3: Simmer bean sprouts until volubilis compello damno aegre careo.",
    "Step 4: Fold soba until spectaculum ventito animi aer.",
    "Step 5: Garnish oyster sauce until aetas umerus ante tamen."
  ],
  "tags": [
    "vegetarian",
    "quick",
    "comfort"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-283/1200/800",
  "createdAt": "2026-05-14T11:48:39.125Z",
  "updatedAt": "2026-05-14T11:48:39.125Z"
}