example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 2 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": 25,
      "userId": 84,
      "title": "golden Pork Sausage Roll",
      "slug": "golden-pork-sausage-roll-25",
      "description": "Vereor apud audio thema appello eius. Vinum enim contego tum audacia cumque termes quae. Congregatio candidus adeo careo viscus timidus voluptas.",
      "cuisine": "american",
      "difficulty": "easy",
      "prepMinutes": 48,
      "cookMinutes": 103,
      "servings": 1,
      "ingredients": [
        "1.75 tsp peas",
        "1.25 tbsp anchovies",
        "1.75 oz cottage cheese",
        "0.25 lb ajowan seed",
        "2.75 tsp hazelnut",
        "1.5 tsp dark chocolate",
        "3 tsp brown flour"
      ],
      "instructions": [
        "Step 1: Season kidney beans until argumentum terra.",
        "Step 2: Whisk salmon until charisma abeo officiis aperte consequuntur.",
        "Step 3: Stir haricot beans until balbus solum.",
        "Step 4: Simmer cumquat until quos absens crur vir ullam.",
        "Step 5: Stir buckwheat noodles until aperiam considero agnosco.",
        "Step 6: Simmer zucchini until speciosus verto quod.",
        "Step 7: Sauté english spinach until terra aegre cuppedia cavus veritatis.",
        "Step 8: Combine tangelo until advenio alii aliquam astrum."
      ],
      "tags": [
        "high-protein",
        "vegan",
        "gluten-free",
        "healthy"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-25/1200/800",
      "createdAt": "2025-01-30T10:00:26.871Z",
      "updatedAt": "2025-01-30T10:00:26.871Z"
    },
    {
      "id": 26,
      "userId": 117,
      "title": "sour Pasta And Beans",
      "slug": "sour-pasta-and-beans-26",
      "description": "Tyrannus amor verus. Via molestiae subvenio.",
      "cuisine": "japanese",
      "difficulty": "medium",
      "prepMinutes": 10,
      "cookMinutes": 0,
      "servings": 7,
      "ingredients": [
        "4 tbsp miso",
        "1.25 tbsp asafoetida",
        "3.5 cup soy sauce",
        "3.75 g spinach",
        "1 g parmesan cheese",
        "2 g carrot",
        "1.25 oz lentils",
        "2.5 oz trout",
        "4 cup sunflower seeds",
        "2.5 tsp lavender flowers"
      ],
      "instructions": [
        "Step 1: Combine cornichons until temptatio copiose pectus enim quas.",
        "Step 2: Garnish oyster mushrooms until alter uxor.",
        "Step 3: Whisk white rice until ab soluta vesco asporto.",
        "Step 4: Simmer chicken until adulatio vitium delectatio sumptus tertius.",
        "Step 5: Whisk molasses until versus bellicus aliquid condico.",
        "Step 6: Whisk cumin until communis deserunt colligo alius.",
        "Step 7: Sauté common cultivated mushrooms until stips libero aegrus tergum adinventitias."
      ],
      "tags": [
        "gluten-free"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-26/1200/800",
      "createdAt": "2025-09-21T05:15:20.791Z",
      "updatedAt": "2025-09-21T05:15:20.791Z"
    },
    {
      "id": 27,
      "userId": 128,
      "title": "golden Chilli Con Carne",
      "slug": "golden-chilli-con-carne-27",
      "description": "Tubineus bos bis. Comptus quaerat aestas peior concido crinis tristis.",
      "cuisine": "indian",
      "difficulty": "hard",
      "prepMinutes": 35,
      "cookMinutes": 102,
      "servings": 8,
      "ingredients": [
        "0.5 cup wakame",
        "4 cup pear",
        "4 oz snapper",
        "3.75 tbsp mustard seed",
        "4 g rice noodles",
        "0.75 cup nectarines",
        "1.75 lb carob carrot",
        "1 tsp lavender flowers",
        "1.75 tbsp rose water",
        "0.25 cup farmed prawns"
      ],
      "instructions": [
        "Step 1: Season rosemary until verbum cubicularis aeger tenuis.",
        "Step 2: Sauté pineapple until aiunt possimus.",
        "Step 3: Sauté stevia until demum subiungo tandem conicio uberrime.",
        "Step 4: Whisk quince until defendo acer.",
        "Step 5: Sauté kumera until volup assumenda celer eum.",
        "Step 6: Sauté garlic until callide caterva arx volutabrum.",
        "Step 7: Stir cardamom until canis usus vae virtus calco.",
        "Step 8: Whisk nashi pear until occaecati minima sumo.",
        "Step 9: Fold taleggio cheese until degero aer accusantium."
      ],
      "tags": [
        "comfort",
        "vegan",
        "gluten-free",
        "weeknight"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-27/1200/800",
      "createdAt": "2025-04-26T11:04:34.071Z",
      "updatedAt": "2025-04-26T11:04:34.071Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=2&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=3&limit=24",
    "prev": "/api/v1/recipes?page=1&limit=24"
  }
}