example-data.com

recipes / #10

tender Chicken Fajitas

tender Chicken Fajitas

comfortspicy
Prep
50 min
Cook
24 min
Serves
1

Uter abduco currus vilitas cenaculum adficio explicabo accusamus vespillo in. Arma cum tollo vesco quod verecundia aspernatur apto. Patruus suus spargo.

Ingredients

  • • 0.5 cup eggs
  • • 0.5 oz edam
  • • 1 oz snowpeas
  • • 1.25 g peppers
  • • 3.75 g chia seeds
  • • 2.5 g sake

Instructions

  1. Step 1: Garnish endive until callide certus autem abbas volaticus.
  2. Step 2: Fold french eschallots until accusator tergo corroboro.
  3. Step 3: Stir rye until tutis certus canto.
  4. Step 4: Sauté juniper berries until sonitus deficio.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/recipes/10" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/recipes/10"
);
const recipe = await res.json();
import type { Recipe } from "https://example-data.com/types/recipes.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/recipes/10"
);
const recipe = (await res.json()) as Recipe;
import requests

res = requests.get(
    "https://example-data.com/api/v1/recipes/10"
)
recipe = res.json()
{
  "id": 10,
  "userId": 57,
  "title": "tender Chicken Fajitas",
  "slug": "tender-chicken-fajitas-10",
  "description": "Uter abduco currus vilitas cenaculum adficio explicabo accusamus vespillo in. Arma cum tollo vesco quod verecundia aspernatur apto. Patruus suus spargo.",
  "cuisine": "mediterranean",
  "difficulty": "medium",
  "prepMinutes": 50,
  "cookMinutes": 24,
  "servings": 1,
  "ingredients": [
    "0.5 cup eggs",
    "0.5 oz edam",
    "1 oz snowpeas",
    "1.25 g peppers",
    "3.75 g chia seeds",
    "2.5 g sake"
  ],
  "instructions": [
    "Step 1: Garnish endive until callide certus autem abbas volaticus.",
    "Step 2: Fold french eschallots until accusator tergo corroboro.",
    "Step 3: Stir rye until tutis certus canto.",
    "Step 4: Sauté juniper berries until sonitus deficio."
  ],
  "tags": [
    "comfort",
    "spicy"
  ],
  "imageUrl": "https://picsum.photos/seed/recipe-10/1200/800",
  "createdAt": "2025-12-04T00:44:51.536Z",
  "updatedAt": "2025-12-04T00:44:51.536Z"
}
Draftbit