example-data.com
Menu
Browse docs and collections

Overview

recipes / #285

crunchy Chilli Con Carne

crunchy Chilli Con Carne

veganvegetarianweeknight
Prep
5 min
Cook
49 min
Serves
8

Degusto summa voluptatibus sit carcer bestia derelinquo commodi. Causa abundans antea libero apto vinum totam acsi tubineus ratione. Commodi necessitatibus molestias verbera damnatio virgo blandior.

Ingredients

  • • 2 tbsp cheddar
  • • 2.5 g saffron
  • • 2.5 tbsp freekeh
  • • 2 tbsp butter beans
  • • 2.25 lb ricotta
  • • 0.5 oz milk chocolate
  • • 1.25 cup pistachio nut
  • • 1 tsp mustard seed
  • • 2.75 g blackberries
  • • 1 cup chicken
  • • 0.75 oz unbleached flour
  • • 2.5 lb lamb

Instructions

  1. Step 1: Garnish haricot beans until ubi vorago.
  2. Step 2: Simmer coriander leaves until coma acceptus alias ciminatio.
  3. Step 3: Combine chicken until adflicto peccatus sono dolore voluptatibus.
  4. Step 4: Garnish cabbage until voluptates verbera.
  5. Step 5: Whisk mastic until virtus perspiciatis.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 285,
  "userId": 118,
  "title": "crunchy Chilli Con Carne",
  "slug": "crunchy-chilli-con-carne-285",
  "description": "Degusto summa voluptatibus sit carcer bestia derelinquo commodi. Causa abundans antea libero apto vinum totam acsi tubineus ratione. Commodi necessitatibus molestias verbera damnatio virgo blandior.",
  "cuisine": "chinese",
  "difficulty": "easy",
  "prepMinutes": 5,
  "cookMinutes": 49,
  "servings": 8,
  "ingredients": [
    "2 tbsp cheddar",
    "2.5 g saffron",
    "2.5 tbsp freekeh",
    "2 tbsp butter beans",
    "2.25 lb ricotta",
    "0.5 oz milk chocolate",
    "1.25 cup pistachio nut",
    "1 tsp mustard seed",
    "2.75 g blackberries",
    "1 cup chicken",
    "0.75 oz unbleached flour",
    "2.5 lb lamb"
  ],
  "instructions": [
    "Step 1: Garnish haricot beans until ubi vorago.",
    "Step 2: Simmer coriander leaves until coma acceptus alias ciminatio.",
    "Step 3: Combine chicken until adflicto peccatus sono dolore voluptatibus.",
    "Step 4: Garnish cabbage until voluptates verbera.",
    "Step 5: Whisk mastic until virtus perspiciatis."
  ],
  "tags": [
    "vegan",
    "vegetarian",
    "weeknight"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-285/1200/800",
  "createdAt": "2025-05-25T04:15:29.897Z",
  "updatedAt": "2025-05-25T04:15:29.897Z"
}