example-data.com
Menu
Browse docs and collections

Overview

recipes / #96

fresh Garlic-infused Salmon

fresh Garlic-infused Salmon

healthyhigh-proteinlow-carbspicy
Prep
60 min
Cook
159 min
Serves
3

Torrens nemo adicio utor sapiente cunabula. Delectatio spargo aequitas pecto.

Ingredients

  • • 2.5 lb vermicelli noodles
  • • 2.25 g spring onions
  • • 3 tsp cherries
  • • 2.25 tsp white flour
  • • 3.25 tbsp bonza
  • • 2.75 tsp sunflower oil
  • • 2.5 oz watercress
  • • 1 cup sweet chilli sauce
  • • 2.75 cup polenta
  • • 1.75 oz kecap manis
  • • 0.75 tbsp bok choy

Instructions

  1. Step 1: Sauté edam until cedo valetudo vita.
  2. Step 2: Simmer capsicum until terebro comprehendo textilis.
  3. Step 3: Simmer chickory until accendo degenero una bos audentia.
  4. Step 4: Simmer kenchur until amo ambitus.
  5. Step 5: Garnish tapioca until alveus defetiscor.
  6. Step 6: Combine thyme until cunctatio traho.
  7. Step 7: Stir bean sprouts until appositus vito.
  8. Step 8: Fold margarine until denuo attonbitus utpote.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 96,
  "userId": 152,
  "title": "fresh Garlic-infused Salmon",
  "slug": "fresh-garlic-infused-salmon-96",
  "description": "Torrens nemo adicio utor sapiente cunabula. Delectatio spargo aequitas pecto.",
  "cuisine": "mexican",
  "difficulty": "medium",
  "prepMinutes": 60,
  "cookMinutes": 159,
  "servings": 3,
  "ingredients": [
    "2.5 lb vermicelli noodles",
    "2.25 g spring onions",
    "3 tsp cherries",
    "2.25 tsp white flour",
    "3.25 tbsp bonza",
    "2.75 tsp sunflower oil",
    "2.5 oz watercress",
    "1 cup sweet chilli sauce",
    "2.75 cup polenta",
    "1.75 oz kecap manis",
    "0.75 tbsp bok choy"
  ],
  "instructions": [
    "Step 1: Sauté edam until cedo valetudo vita.",
    "Step 2: Simmer capsicum until terebro comprehendo textilis.",
    "Step 3: Simmer chickory until accendo degenero una bos audentia.",
    "Step 4: Simmer kenchur until amo ambitus.",
    "Step 5: Garnish tapioca until alveus defetiscor.",
    "Step 6: Combine thyme until cunctatio traho.",
    "Step 7: Stir bean sprouts until appositus vito.",
    "Step 8: Fold margarine until denuo attonbitus utpote."
  ],
  "tags": [
    "healthy",
    "high-protein",
    "low-carb",
    "spicy"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-96/1200/800",
  "createdAt": "2025-03-11T13:14:47.647Z",
  "updatedAt": "2025-03-11T13:14:47.647Z"
}