example-data.com
Menu
Browse docs and collections

Overview

recipes / #245

rich Pasta With Tomato And Basil

rich Pasta With Tomato And Basil

healthy
Prep
14 min
Cook
104 min
Serves
1

Constans sumptus aqua suspendo claustrum venustas deficio adicio caterva rem. Arbustum totam articulus minima aduro vapulus desolo suscipit denuo.

Ingredients

  • • 1.25 oz pear juice
  • • 0.25 cup milk
  • • 1.25 lb oats
  • • 2.25 oz sultanas
  • • 2.75 tbsp jicama
  • • 3.5 lb cream
  • • 2 oz goat cheese
  • • 2.25 cup purple carrot

Instructions

  1. Step 1: Fold lime leaves until custodia aiunt cerno amet adfectus.
  2. Step 2: Whisk kale until bene tero umquam.
  3. Step 3: Season hijiki until magnam voveo brevis cibus.
  4. Step 4: Stir oyster mushrooms until peior coaegresco assentator.
  5. Step 5: Simmer polenta until demonstro recusandae aptus vigilo bonus.
  6. Step 6: Stir pecorino until asporto calcar ultra deprecator.
  7. Step 7: Simmer cayenne until trepide cariosus eius depulso labore.
  8. Step 8: Stir wholemeal until centum clarus.
  9. Step 9: Season fruit until usque depopulo angelus depraedor.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 245,
  "userId": 200,
  "title": "rich Pasta With Tomato And Basil",
  "slug": "rich-pasta-with-tomato-and-basil-245",
  "description": "Constans sumptus aqua suspendo claustrum venustas deficio adicio caterva rem. Arbustum totam articulus minima aduro vapulus desolo suscipit denuo.",
  "cuisine": "mexican",
  "difficulty": "hard",
  "prepMinutes": 14,
  "cookMinutes": 104,
  "servings": 1,
  "ingredients": [
    "1.25 oz pear juice",
    "0.25 cup milk",
    "1.25 lb oats",
    "2.25 oz sultanas",
    "2.75 tbsp jicama",
    "3.5 lb cream",
    "2 oz goat cheese",
    "2.25 cup purple carrot"
  ],
  "instructions": [
    "Step 1: Fold lime leaves until custodia aiunt cerno amet adfectus.",
    "Step 2: Whisk kale until bene tero umquam.",
    "Step 3: Season hijiki until magnam voveo brevis cibus.",
    "Step 4: Stir oyster mushrooms until peior coaegresco assentator.",
    "Step 5: Simmer polenta until demonstro recusandae aptus vigilo bonus.",
    "Step 6: Stir pecorino until asporto calcar ultra deprecator.",
    "Step 7: Simmer cayenne until trepide cariosus eius depulso labore.",
    "Step 8: Stir wholemeal until centum clarus.",
    "Step 9: Season fruit until usque depopulo angelus depraedor."
  ],
  "tags": [
    "healthy"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-245/1200/800",
  "createdAt": "2025-02-19T09:47:21.598Z",
  "updatedAt": "2025-02-19T09:47:21.598Z"
}