example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 7 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": 145,
      "userId": 123,
      "title": "fluffy Aubergine And Butternut Pumpkin Tart",
      "slug": "fluffy-aubergine-and-butternut-pumpkin-tart-145",
      "description": "Urbs virga conor adulescens illo eos aduro. Sto audeo demoror corrupti territo compono texo conscendo. Ex alter valde.",
      "cuisine": "chinese",
      "difficulty": "medium",
      "prepMinutes": 24,
      "cookMinutes": 1,
      "servings": 8,
      "ingredients": [
        "3.75 cup rhubarb",
        "1.25 cup persimmon",
        "2.5 cup butternut pumpkin",
        "3.5 lb vinegar",
        "3.5 cup grape seed oil",
        "2.25 lb chinese five spice",
        "2.5 oz pecorino",
        "4 lb peas",
        "4 g feta",
        "3.75 g cloves",
        "3.25 g cherries",
        "1 tsp fennel"
      ],
      "instructions": [
        "Step 1: Simmer red cabbage until apud dolorem catena vicissitudo desidero.",
        "Step 2: Sauté anchovies until defleo conitor dolor.",
        "Step 3: Fold ricemilk until certe temptatio assumenda culpa.",
        "Step 4: Sauté pineapple until cilicium nesciunt.",
        "Step 5: Combine watermelon until trans subvenio tametsi textilis acerbitas.",
        "Step 6: Whisk jasmine rice until coaegresco capitulus utrum.",
        "Step 7: Sauté curry powder until cinis aestas admitto adsuesco aiunt.",
        "Step 8: Stir peanuts until acquiro utrimque.",
        "Step 9: Whisk bonza until tunc undique currus."
      ],
      "tags": [
        "low-carb",
        "vegetarian"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-145/1200/800",
      "createdAt": "2025-09-30T01:45:56.577Z",
      "updatedAt": "2025-09-30T01:45:56.577Z"
    },
    {
      "id": 146,
      "userId": 230,
      "title": "spicy Lasagne",
      "slug": "spicy-lasagne-146",
      "description": "Demonstro cubitum benigne corroboro thorax expedita vorago conicio aliqua territo. Atrocitas denique sponte expedita pecto contigo ustilo ullam natus benigne. Suppono aetas allatus cubicularis vesica valde acerbitas claro curia.",
      "cuisine": "mediterranean",
      "difficulty": "medium",
      "prepMinutes": 22,
      "cookMinutes": 110,
      "servings": 5,
      "ingredients": [
        "3.25 oz carob carrot",
        "4 tsp haricot beans",
        "0.75 lb walnut",
        "2.5 g kidneys",
        "1.75 tbsp tamari",
        "1.75 g omega spread"
      ],
      "instructions": [
        "Step 1: Season grapes until alter at vehemens.",
        "Step 2: Fold lavender flowers until spes vigilo viridis autem.",
        "Step 3: Season persimmon until comitatus una tergum.",
        "Step 4: Season tea oil until deleniti commemoro.",
        "Step 5: Sauté swordfish until surgo desipio denuo traho.",
        "Step 6: Stir tapioca flour until teres conscendo.",
        "Step 7: Fold marjoram until creo viscus voluptatum decipio.",
        "Step 8: Stir kale until candidus a."
      ],
      "tags": [
        "dairy-free",
        "comfort",
        "quick"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-146/1200/800",
      "createdAt": "2026-02-07T03:54:12.991Z",
      "updatedAt": "2026-02-07T03:54:12.991Z"
    },
    {
      "id": 147,
      "userId": 130,
      "title": "fluffy Redfish And Salmon Pie",
      "slug": "fluffy-redfish-and-salmon-pie-147",
      "description": "Repudiandae sortitus utique aedificium qui administratio rerum anser angulus ustulo.",
      "cuisine": "thai",
      "difficulty": "medium",
      "prepMinutes": 16,
      "cookMinutes": 36,
      "servings": 4,
      "ingredients": [
        "4 tsp pecan nut",
        "1 tsp quark",
        "1.75 tsp paprik",
        "2.25 oz pears",
        "2.5 cup endive",
        "1.25 oz peas",
        "2.25 tsp bacon",
        "0.25 lb nori",
        "2 oz raisin",
        "3.75 tbsp greenwheat freekeh"
      ],
      "instructions": [
        "Step 1: Simmer macadamia oil until clam illum.",
        "Step 2: Season mango until summa carus aranea.",
        "Step 3: Garnish mackerel until teres defluo creo trucido.",
        "Step 4: Season haloumi until xiphias occaecati dolorum.",
        "Step 5: Combine beef until audax alo caelum.",
        "Step 6: Season grapes until virtus vicissitudo compono reprehenderit numquam.",
        "Step 7: Combine pecan nut until vel asper sollers vesica.",
        "Step 8: Stir vanilla beans until supra turpis.",
        "Step 9: Whisk agave syrup until beneficium demo."
      ],
      "tags": [
        "vegetarian",
        "dairy-free",
        "comfort",
        "gluten-free"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-147/1200/800",
      "createdAt": "2026-05-11T07:47:04.922Z",
      "updatedAt": "2026-05-11T07:47:04.922Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=7&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=8&limit=24",
    "prev": "/api/v1/recipes?page=6&limit=24"
  }
}