example-data.com
Menu
Browse docs and collections

Overview

recipes / #249

creamy Chilli Con Carne

creamy Chilli Con Carne

vegetariangluten-freehealthyhigh-protein
Prep
23 min
Cook
72 min
Serves
7

Error caecus astrum abstergo animadverto. Crinis apparatus tabella subvenio articulus ventosus vigor crastinus absconditus. Volo explicabo speciosus umbra arbustum amaritudo cogito apto.

Ingredients

  • • 1 oz capers
  • • 0.25 cup licorice
  • • 2.25 tsp lamb
  • • 4 g chinese five spice
  • • 1 oz beetroot
  • • 3.75 tbsp mountain bread
  • • 2.75 tbsp wholewheat flour
  • • 3.25 g chilli pepper
  • • 3.25 lb corn syrup
  • • 2 tsp broccoli
  • • 0.5 tbsp safflower oil
  • • 2.25 cup agave syrup
  • • 2.75 g ham

Instructions

  1. Step 1: Stir blue swimmer crab until cras teneo curriculum astrum curia.
  2. Step 2: Fold rice syrup until ago cervus adstringo brevis.
  3. Step 3: Sauté dandelion until ubi taedium.
  4. Step 4: Stir borlotti beans until animadverto suggero venio vobis auditor.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 249,
  "userId": 47,
  "title": "creamy Chilli Con Carne",
  "slug": "creamy-chilli-con-carne-249",
  "description": "Error caecus astrum abstergo animadverto. Crinis apparatus tabella subvenio articulus ventosus vigor crastinus absconditus. Volo explicabo speciosus umbra arbustum amaritudo cogito apto.",
  "cuisine": "italian",
  "difficulty": "hard",
  "prepMinutes": 23,
  "cookMinutes": 72,
  "servings": 7,
  "ingredients": [
    "1 oz capers",
    "0.25 cup licorice",
    "2.25 tsp lamb",
    "4 g chinese five spice",
    "1 oz beetroot",
    "3.75 tbsp mountain bread",
    "2.75 tbsp wholewheat flour",
    "3.25 g chilli pepper",
    "3.25 lb corn syrup",
    "2 tsp broccoli",
    "0.5 tbsp safflower oil",
    "2.25 cup agave syrup",
    "2.75 g ham"
  ],
  "instructions": [
    "Step 1: Stir blue swimmer crab until cras teneo curriculum astrum curia.",
    "Step 2: Fold rice syrup until ago cervus adstringo brevis.",
    "Step 3: Sauté dandelion until ubi taedium.",
    "Step 4: Stir borlotti beans until animadverto suggero venio vobis auditor."
  ],
  "tags": [
    "vegetarian",
    "gluten-free",
    "healthy",
    "high-protein"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-249/1200/800",
  "createdAt": "2024-06-10T08:37:03.951Z",
  "updatedAt": "2024-06-10T08:37:03.951Z"
}