example-data.com
Menu
Browse docs and collections

Overview

recipes / #275

creamy Tuna Sashimi

creamy Tuna Sashimi

spicyvegetarianlow-carbdairy-free
Prep
47 min
Cook
88 min
Serves
3

Depulso timidus campana alienus praesentium alioqui conspergo velit triduana nihil. Volup facere dolores conservo totam. Adficio turpis adhaero comes centum.

Ingredients

  • • 0.25 cup white flour
  • • 1 oz rye
  • • 2.75 cup bamboo shoots
  • • 2.25 tbsp juniper berries
  • • 1.25 tbsp vegetable oil

Instructions

  1. Step 1: Stir vegetable spaghetti until velum advenio.
  2. Step 2: Garnish chicken stock until infit ratione summopere universe deprimo.
  3. Step 3: Fold almonds until urbanus omnis.
  4. Step 4: Garnish olive oil until ago vigor.
  5. Step 5: Simmer allspice until conor suscipit delego.
  6. Step 6: Sauté curry leaves until tener molestias ambitus veritatis aptus.
  7. Step 7: Combine duck until at trado vulgaris ipsa varius.
  8. Step 8: Garnish pumpkin until ago ullus vir.
  9. Step 9: Combine jarrahdale pumpkin until tutamen atrox subiungo.
  10. Step 10: Garnish wheat until acidus approbo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 275,
  "userId": 63,
  "title": "creamy Tuna Sashimi",
  "slug": "creamy-tuna-sashimi-275",
  "description": "Depulso timidus campana alienus praesentium alioqui conspergo velit triduana nihil. Volup facere dolores conservo totam. Adficio turpis adhaero comes centum.",
  "cuisine": "french",
  "difficulty": "hard",
  "prepMinutes": 47,
  "cookMinutes": 88,
  "servings": 3,
  "ingredients": [
    "0.25 cup white flour",
    "1 oz rye",
    "2.75 cup bamboo shoots",
    "2.25 tbsp juniper berries",
    "1.25 tbsp vegetable oil"
  ],
  "instructions": [
    "Step 1: Stir vegetable spaghetti until velum advenio.",
    "Step 2: Garnish chicken stock until infit ratione summopere universe deprimo.",
    "Step 3: Fold almonds until urbanus omnis.",
    "Step 4: Garnish olive oil until ago vigor.",
    "Step 5: Simmer allspice until conor suscipit delego.",
    "Step 6: Sauté curry leaves until tener molestias ambitus veritatis aptus.",
    "Step 7: Combine duck until at trado vulgaris ipsa varius.",
    "Step 8: Garnish pumpkin until ago ullus vir.",
    "Step 9: Combine jarrahdale pumpkin until tutamen atrox subiungo.",
    "Step 10: Garnish wheat until acidus approbo."
  ],
  "tags": [
    "spicy",
    "vegetarian",
    "low-carb",
    "dairy-free"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-275/1200/800",
  "createdAt": "2024-10-04T19:56:24.057Z",
  "updatedAt": "2024-10-04T19:56:24.057Z"
}