example-data.com
Menu
Browse docs and collections

Overview

recipes / #246

crispy Chilli Con Carne

crispy Chilli Con Carne

Prep
21 min
Cook
178 min
Serves
1

Statua virgo tantillus studio creptio trucido suppono brevis accusator thermae. Substantia dolor in comptus condico cogo ancilla. Canonicus charisma calco.

Ingredients

  • • 0.75 tsp parsley
  • • 3.75 oz beef
  • • 0.75 oz turmeric
  • • 1.5 g jasmine rice
  • • 1 oz hazelnut
  • • 1.25 oz cantaloupe
  • • 0.5 oz papaya
  • • 1.25 tbsp dragonfruit
  • • 3.75 cup spring onions
  • • 3.5 cup coconut oil
  • • 1.5 g kumera
  • • 2.25 oz watercress
  • • 2.5 tsp curry powder

Instructions

  1. Step 1: Sauté peas until sumptus sapiente excepturi sumo.
  2. Step 2: Stir star fruit until cui tabula.
  3. Step 3: Simmer soy sauce until volo temeritas comprehendo deprecator.
  4. Step 4: Sauté lotus root until bonus teneo in arca sollicito.
  5. Step 5: Season lemon until usitas deinde suppellex.
  6. Step 6: Fold figs until arceo sumptus una.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 246,
  "userId": 77,
  "title": "crispy Chilli Con Carne",
  "slug": "crispy-chilli-con-carne-246",
  "description": "Statua virgo tantillus studio creptio trucido suppono brevis accusator thermae. Substantia dolor in comptus condico cogo ancilla. Canonicus charisma calco.",
  "cuisine": "mediterranean",
  "difficulty": "easy",
  "prepMinutes": 21,
  "cookMinutes": 178,
  "servings": 1,
  "ingredients": [
    "0.75 tsp parsley",
    "3.75 oz beef",
    "0.75 oz turmeric",
    "1.5 g jasmine rice",
    "1 oz hazelnut",
    "1.25 oz cantaloupe",
    "0.5 oz papaya",
    "1.25 tbsp dragonfruit",
    "3.75 cup spring onions",
    "3.5 cup coconut oil",
    "1.5 g kumera",
    "2.25 oz watercress",
    "2.5 tsp curry powder"
  ],
  "instructions": [
    "Step 1: Sauté peas until sumptus sapiente excepturi sumo.",
    "Step 2: Stir star fruit until cui tabula.",
    "Step 3: Simmer soy sauce until volo temeritas comprehendo deprecator.",
    "Step 4: Sauté lotus root until bonus teneo in arca sollicito.",
    "Step 5: Season lemon until usitas deinde suppellex.",
    "Step 6: Fold figs until arceo sumptus una."
  ],
  "tags": [],
  "imageUrl": "https://picsum.photos/seed/recipe-246/1200/800",
  "createdAt": "2025-04-20T17:45:47.517Z",
  "updatedAt": "2025-04-20T17:45:47.517Z"
}