example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 5 of 13.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/recipes?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/recipes?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/recipes";

const res = await fetch(
  "https://example-data.com/api/v1/recipes?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Recipe>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/recipes",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 97,
      "userId": 207,
      "title": "crunchy Onion Seed-crusted Kangaroo",
      "slug": "crunchy-onion-seed-crusted-kangaroo-97",
      "description": "Aetas assumenda centum quod natus ratione. Celer vomer adfectus ventus synagoga corroboro admoveo nulla ambulo stultus.",
      "cuisine": "vietnamese",
      "difficulty": "easy",
      "prepMinutes": 36,
      "cookMinutes": 177,
      "servings": 8,
      "ingredients": [
        "3.5 lb chestnut",
        "0.5 tbsp tuna",
        "3 tsp celery",
        "3.5 tbsp blood oranges",
        "1 tsp hijiki",
        "1.75 g sprouts",
        "0.75 g olive oil",
        "1.25 tsp licorice",
        "4 g kudzu",
        "1.5 g rye bread",
        "3 lb butter beans",
        "2.25 tbsp eggs",
        "3.25 oz garlic",
        "3 g flathead"
      ],
      "instructions": [
        "Step 1: Simmer crabs until cubo textor amiculum terreo.",
        "Step 2: Fold snapper until utor facilis adiuvo ea triduana.",
        "Step 3: Fold hazelnut until tibi desidero cursim armarium sol.",
        "Step 4: Sauté parsley until patior creo ver solvo.",
        "Step 5: Garnish butter beans until vis celebrer odit.",
        "Step 6: Sauté tamari until alius universe."
      ],
      "tags": [
        "spicy",
        "healthy",
        "quick",
        "comfort"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-97/1200/800",
      "createdAt": "2025-11-01T01:38:38.701Z",
      "updatedAt": "2025-11-01T01:38:38.701Z"
    },
    {
      "id": 98,
      "userId": 32,
      "title": "smoky Salmon Nigiri",
      "slug": "smoky-salmon-nigiri-98",
      "description": "Ter degusto aliqua laborum spectaculum atqui demulceo. Summopere conturbo demoror sulum terreo triumphus dens tepidus.",
      "cuisine": "japanese",
      "difficulty": "easy",
      "prepMinutes": 45,
      "cookMinutes": 30,
      "servings": 4,
      "ingredients": [
        "3.5 tbsp butter",
        "0.5 g mozzarella",
        "0.5 cup baking soda",
        "1.75 g parmesan cheese",
        "3.25 cup chives",
        "3.75 g achacha"
      ],
      "instructions": [
        "Step 1: Whisk mint until cedo benigne comminor.",
        "Step 2: Stir monkfish until cauda decipio.",
        "Step 3: Garnish wholegrain bread until sufficio demum.",
        "Step 4: Garnish mace until non pauci vivo.",
        "Step 5: Fold red cabbage until audax cotidie utilis.",
        "Step 6: Stir okra until audio denego calamitas ultra.",
        "Step 7: Season cavalo until debilito occaecati aestus."
      ],
      "tags": [
        "vegetarian",
        "vegan",
        "gluten-free",
        "weeknight"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-98/1200/800",
      "createdAt": "2024-07-22T06:15:14.498Z",
      "updatedAt": "2024-07-22T06:15:14.498Z"
    },
    {
      "id": 99,
      "userId": 12,
      "title": "fluffy Cherry Pie",
      "slug": "fluffy-cherry-pie-99",
      "description": "Acsi volaticus veritas absum theca. Combibo abbas caelum optio ocer.",
      "cuisine": "mexican",
      "difficulty": "medium",
      "prepMinutes": 17,
      "cookMinutes": 82,
      "servings": 3,
      "ingredients": [
        "0.5 lb cumin",
        "4 oz quark",
        "2.75 lb yellowtail kingfish",
        "0.75 cup hijiki",
        "2.75 tbsp kangaroo",
        "1.5 cup lemon",
        "2.5 tbsp snapper"
      ],
      "instructions": [
        "Step 1: Stir chives until sub arcesso viscus.",
        "Step 2: Sauté brown rice until adinventitias calculus ventus voluptatum.",
        "Step 3: Fold french eschallots until ter cernuus nihil.",
        "Step 4: Garnish vegetable stock until alienus sint surculus ante.",
        "Step 5: Season swiss chard until clibanus annus curvo arbitro.",
        "Step 6: Fold anchovies until repellat cunae amplus conqueror clam.",
        "Step 7: Garnish tabasco until tantum aestivus."
      ],
      "tags": [
        "comfort",
        "vegan",
        "weeknight"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-99/1200/800",
      "createdAt": "2025-05-17T17:42:51.953Z",
      "updatedAt": "2025-05-17T17:42:51.953Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=5&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=6&limit=24",
    "prev": "/api/v1/recipes?page=4&limit=24"
  }
}