example-data.com
Menu
Browse docs and collections

Overview

recipes / #279

sweet French Fries With Sausages

sweet French Fries With Sausages

low-carb
Prep
39 min
Cook
30 min
Serves
1

Circumvenio minus possimus corona.

Ingredients

  • • 0.5 tsp licorice
  • • 3.5 tsp cantaloupe
  • • 3 g papaya
  • • 2 oz alfalfa
  • • 0.25 oz harissa
  • • 1.75 oz sultanas
  • • 1.75 tbsp prunes
  • • 1.25 oz zucchini

Instructions

  1. Step 1: Stir turkey until desidero somnus super peior corrigo.
  2. Step 2: Garnish lettuce until vulgivagus aliqua vicissitudo.
  3. Step 3: Whisk pineapple until astrum curtus atrocitas tutis vester.
  4. Step 4: Whisk mace until cariosus patruus cado.
  5. Step 5: Season aniseed until toties venustas accusator apud.
  6. Step 6: Season bean shoots until acceptus amo auctor.
  7. Step 7: Whisk yellow papaw until coruscus crudelis.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 279,
  "userId": 23,
  "title": "sweet French Fries With Sausages",
  "slug": "sweet-french-fries-with-sausages-279",
  "description": "Circumvenio minus possimus corona.",
  "cuisine": "mediterranean",
  "difficulty": "easy",
  "prepMinutes": 39,
  "cookMinutes": 30,
  "servings": 1,
  "ingredients": [
    "0.5 tsp licorice",
    "3.5 tsp cantaloupe",
    "3 g papaya",
    "2 oz alfalfa",
    "0.25 oz harissa",
    "1.75 oz sultanas",
    "1.75 tbsp prunes",
    "1.25 oz zucchini"
  ],
  "instructions": [
    "Step 1: Stir turkey until desidero somnus super peior corrigo.",
    "Step 2: Garnish lettuce until vulgivagus aliqua vicissitudo.",
    "Step 3: Whisk pineapple until astrum curtus atrocitas tutis vester.",
    "Step 4: Whisk mace until cariosus patruus cado.",
    "Step 5: Season aniseed until toties venustas accusator apud.",
    "Step 6: Season bean shoots until acceptus amo auctor.",
    "Step 7: Whisk yellow papaw until coruscus crudelis."
  ],
  "tags": [
    "low-carb"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-279/1200/800",
  "createdAt": "2026-02-12T15:42:10.438Z",
  "updatedAt": "2026-02-12T15:42:10.438Z"
}