example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 12 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": 265,
      "userId": 221,
      "title": "salty Cavalo And Pear Tart",
      "slug": "salty-cavalo-and-pear-tart-265",
      "description": "Cultellus titulus volutabrum aeternus clementia sufficio bestia aegrotatio abutor bardus.",
      "cuisine": "french",
      "difficulty": "hard",
      "prepMinutes": 8,
      "cookMinutes": 157,
      "servings": 7,
      "ingredients": [
        "1 lb sweet chilli sauce",
        "2 oz scallops",
        "0.25 g avocado spread",
        "2 tsp rice noodles",
        "4 tbsp anchovies",
        "1.5 tbsp hazelnut",
        "0.75 g barramundi",
        "1 g cardamom",
        "3.25 cup oysters",
        "3.5 lb quark",
        "1 tbsp tofu",
        "1.75 g kiwi berries",
        "4 tsp kangaroo"
      ],
      "instructions": [
        "Step 1: Stir bread until censura adfectus soleo certe.",
        "Step 2: Combine blood oranges until bibo decens spargo aqua.",
        "Step 3: Season beef stock until apud decerno.",
        "Step 4: Whisk bran until tardus versus deleo.",
        "Step 5: Fold nori until absorbeo adeo universe bestia aegrus.",
        "Step 6: Season hummus until sonitus alii.",
        "Step 7: Season red wine vinegar until cupressus derideo adsidue tabgo tenax.",
        "Step 8: Fold custard apples until aestus cogito."
      ],
      "tags": [
        "spicy",
        "low-carb",
        "high-protein"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-265/1200/800",
      "createdAt": "2025-10-28T06:19:58.731Z",
      "updatedAt": "2025-10-28T06:19:58.731Z"
    },
    {
      "id": 266,
      "userId": 238,
      "title": "tangy Jarrahdale Pumpkin And Mango Tart",
      "slug": "tangy-jarrahdale-pumpkin-and-mango-tart-266",
      "description": "Vallum creo patria tutis aptus non quasi. Animadverto volup uterque derideo. Viscus caecus caterva deinde amissio.",
      "cuisine": "japanese",
      "difficulty": "medium",
      "prepMinutes": 46,
      "cookMinutes": 20,
      "servings": 1,
      "ingredients": [
        "2.75 tsp corella pear",
        "3.25 cup mozzarella",
        "1.75 cup kangaroo",
        "3.5 tbsp cloves",
        "3.5 tbsp horseradish",
        "1.25 tbsp cake",
        "2.75 cup salmon",
        "3 tsp rye",
        "3 oz currants",
        "3.25 tsp macadamia nut",
        "3 tsp oregano"
      ],
      "instructions": [
        "Step 1: Sauté cumin until adimpleo celer alter.",
        "Step 2: Combine cacao until umbra tubineus umbra suspendo arbitro.",
        "Step 3: Stir paprik until eius cubicularis.",
        "Step 4: Fold candle nut until considero denuncio officia.",
        "Step 5: Whisk hot smoked salmon until decor catena testimonium cito.",
        "Step 6: Garnish apple cider vinegar until aliqua arca dedico.",
        "Step 7: Season plums until labore depereo denuo arcus apparatus.",
        "Step 8: Season anchovies until carbo atqui deporto."
      ],
      "tags": [],
      "imageUrl": "https://picsum.photos/seed/recipe-266/1200/800",
      "createdAt": "2026-02-05T23:08:52.829Z",
      "updatedAt": "2026-02-05T23:08:52.829Z"
    },
    {
      "id": 267,
      "userId": 134,
      "title": "delicious Irish Spring Onions Soup",
      "slug": "delicious-irish-spring-onions-soup-267",
      "description": "Carmen averto sumptus tui suppono tondeo baiulus adopto harum pectus.",
      "cuisine": "indian",
      "difficulty": "medium",
      "prepMinutes": 27,
      "cookMinutes": 78,
      "servings": 4,
      "ingredients": [
        "0.75 lb water",
        "3.75 g jerusalem artichoke",
        "1.25 cup rice noodles",
        "4 cup chicken stock",
        "3.25 tsp artichoke",
        "1 g fenugreek",
        "1 tsp sunflower oil"
      ],
      "instructions": [
        "Step 1: Stir sour dough bread until modi dedico decretum degusto.",
        "Step 2: Combine goat milk until cruciamentum volaticus.",
        "Step 3: Stir peppers until acervus terror.",
        "Step 4: Whisk cos lettuce until cado tenus abbas canonicus sum.",
        "Step 5: Garnish butternut pumpkin until consectetur cariosus.",
        "Step 6: Simmer tofu until deleo cupiditas adflicto.",
        "Step 7: Simmer prunes until thema adaugeo bestia quae vapulus."
      ],
      "tags": [
        "high-protein",
        "quick",
        "dairy-free"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-267/1200/800",
      "createdAt": "2025-09-27T10:23:31.970Z",
      "updatedAt": "2025-09-27T10:23:31.970Z"
    }
  ],
  "meta": {
    "page": 12,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=12&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=13&limit=24",
    "prev": "/api/v1/recipes?page=11&limit=24"
  }
}