example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 8 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": 169,
      "userId": 200,
      "title": "tender Katsu Curry",
      "slug": "tender-katsu-curry-169",
      "description": "Coniecto vilitas labore admiratio necessitatibus spoliatio. Veritatis absorbeo clamo abutor sublime.",
      "cuisine": "american",
      "difficulty": "medium",
      "prepMinutes": 28,
      "cookMinutes": 155,
      "servings": 7,
      "ingredients": [
        "4 tsp garlic",
        "0.75 tsp green pepper",
        "0.25 tbsp rosemary",
        "0.75 tbsp green pepper",
        "2 g carrot",
        "2.5 cup fingerlime",
        "1.5 tbsp curry leaves",
        "0.75 cup albacore tuna",
        "1.25 oz turkey",
        "1.5 g hot smoked salmon"
      ],
      "instructions": [
        "Step 1: Combine polenta until communis denuo ventus stella ustilo.",
        "Step 2: Stir mountain bread until carus fugiat charisma supra.",
        "Step 3: Garnish fish stock until temporibus tergiversatio aqua demum.",
        "Step 4: Fold calamari until tempora dedico.",
        "Step 5: Simmer rhubarb until vinco ustilo supra tego tergum.",
        "Step 6: Combine peppers until sollers stips certe caelum cura."
      ],
      "tags": [],
      "imageUrl": "https://picsum.photos/seed/recipe-169/1200/800",
      "createdAt": "2024-06-17T18:57:27.108Z",
      "updatedAt": "2024-06-17T18:57:27.108Z"
    },
    {
      "id": 170,
      "userId": 32,
      "title": "juicy Beans Salad",
      "slug": "juicy-beans-salad-170",
      "description": "Aequus tondeo acidus ademptio cervus tergiversatio auctus vestrum vitae vicinus.",
      "cuisine": "american",
      "difficulty": "easy",
      "prepMinutes": 7,
      "cookMinutes": 111,
      "servings": 6,
      "ingredients": [
        "3.5 lb dried chinese broccoli",
        "1 lb nectarines",
        "2.5 oz elderberry",
        "2.5 lb pears",
        "3.25 lb cavalo",
        "1.75 g cumin",
        "3 lb kumera",
        "3.25 oz dandelion"
      ],
      "instructions": [
        "Step 1: Whisk squid until depulso audax.",
        "Step 2: Stir nasturtium until delectatio amplitudo quaerat adulatio vitium.",
        "Step 3: Season marigold until patior bestia repudiandae.",
        "Step 4: Combine fresh chillies until urbanus alias tricesimus.",
        "Step 5: Simmer lentils until bos dolore viduo appono."
      ],
      "tags": [
        "high-protein"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-170/1200/800",
      "createdAt": "2024-11-30T02:24:54.786Z",
      "updatedAt": "2024-11-30T02:24:54.786Z"
    },
    {
      "id": 171,
      "userId": 246,
      "title": "creamy Tender American Stew",
      "slug": "creamy-tender-american-stew-171",
      "description": "Ducimus tergiversatio sit. Decens demonstro ante strues aduro angelus.",
      "cuisine": "indian",
      "difficulty": "medium",
      "prepMinutes": 54,
      "cookMinutes": 28,
      "servings": 6,
      "ingredients": [
        "3.25 oz molasses",
        "0.25 g morwong",
        "0.25 oz cranberry",
        "0.25 g turnips",
        "4 cup cavalo"
      ],
      "instructions": [
        "Step 1: Simmer agar until altus ars cotidie vito correptius.",
        "Step 2: Stir flaxseed oil until aqua velit cimentarius defungo.",
        "Step 3: Season mung beans until dicta turba dolorem tempus volaticus.",
        "Step 4: Simmer warehou until caute vestrum."
      ],
      "tags": [
        "healthy",
        "family",
        "high-protein",
        "vegan"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-171/1200/800",
      "createdAt": "2025-10-19T10:01:42.583Z",
      "updatedAt": "2025-10-19T10:01:42.583Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=8&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=9&limit=24",
    "prev": "/api/v1/recipes?page=7&limit=24"
  }
}