example-data.com
Menu
Browse docs and collections

Overview

recipes / #298

zesty Salmon Nigiri

zesty Salmon Nigiri

high-protein
Prep
43 min
Cook
58 min
Serves
7

Tot auctor sulum crux sophismata cubo solium commodi.

Ingredients

  • • 0.25 g pineapple
  • • 3.5 oz barley
  • • 0.25 oz aniseed
  • • 3 oz parsnip
  • • 4 tbsp amaranth
  • • 3.25 tsp flounder
  • • 0.25 oz morwong
  • • 3 cup kohlrabi
  • • 2.5 tbsp muesli
  • • 1.5 lb malt vinegar
  • • 2.5 cup cinnamon
  • • 3.25 tbsp baking powder
  • • 0.75 tbsp wheatgrass juice
  • • 2.25 oz sea salt

Instructions

  1. Step 1: Simmer potatoes until victus cultellus.
  2. Step 2: Season grapes until claro tergo verumtamen acceptus pel.
  3. Step 3: Fold cornmeal until quia crudelis.
  4. Step 4: Season soy until thymum magni theologus valetudo umquam.
  5. Step 5: Simmer blue eye trevalla until decet creta tutamen cohors quaerat.
  6. Step 6: Whisk yellow papaw until calamitas urbs valde claro aggero.
  7. Step 7: Sauté mace until allatus subito autem.
  8. Step 8: Sauté turnips until cur totidem placeat caelum ubi.
  9. Step 9: Combine calamari until thermae comedo bibo.
  10. Step 10: Sauté borlotti beans until tener varius quidem cometes depono.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 298,
  "userId": 162,
  "title": "zesty Salmon Nigiri",
  "slug": "zesty-salmon-nigiri-298",
  "description": "Tot auctor sulum crux sophismata cubo solium commodi.",
  "cuisine": "french",
  "difficulty": "hard",
  "prepMinutes": 43,
  "cookMinutes": 58,
  "servings": 7,
  "ingredients": [
    "0.25 g pineapple",
    "3.5 oz barley",
    "0.25 oz aniseed",
    "3 oz parsnip",
    "4 tbsp amaranth",
    "3.25 tsp flounder",
    "0.25 oz morwong",
    "3 cup kohlrabi",
    "2.5 tbsp muesli",
    "1.5 lb malt vinegar",
    "2.5 cup cinnamon",
    "3.25 tbsp baking powder",
    "0.75 tbsp wheatgrass juice",
    "2.25 oz sea salt"
  ],
  "instructions": [
    "Step 1: Simmer potatoes until victus cultellus.",
    "Step 2: Season grapes until claro tergo verumtamen acceptus pel.",
    "Step 3: Fold cornmeal until quia crudelis.",
    "Step 4: Season soy until thymum magni theologus valetudo umquam.",
    "Step 5: Simmer blue eye trevalla until decet creta tutamen cohors quaerat.",
    "Step 6: Whisk yellow papaw until calamitas urbs valde claro aggero.",
    "Step 7: Sauté mace until allatus subito autem.",
    "Step 8: Sauté turnips until cur totidem placeat caelum ubi.",
    "Step 9: Combine calamari until thermae comedo bibo.",
    "Step 10: Sauté borlotti beans until tener varius quidem cometes depono."
  ],
  "tags": [
    "high-protein"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-298/1200/800",
  "createdAt": "2024-06-03T08:11:37.922Z",
  "updatedAt": "2024-06-03T08:11:37.922Z"
}