example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 4 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": 73,
      "userId": 44,
      "title": "smoky Arepas",
      "slug": "smoky-arepas-73",
      "description": "Ut aufero tandem fuga suggero.",
      "cuisine": "vietnamese",
      "difficulty": "hard",
      "prepMinutes": 11,
      "cookMinutes": 39,
      "servings": 6,
      "ingredients": [
        "3.25 cup red lentils",
        "1.5 tsp corn syrup",
        "4 g kumera",
        "1.25 oz allspice",
        "3.5 tbsp yeast",
        "2.25 g tamari",
        "2.25 oz bean sprouts",
        "1 lb fingerlime",
        "1.75 tsp greenwheat freekeh"
      ],
      "instructions": [
        "Step 1: Garnish fruit until hic contego.",
        "Step 2: Season elderberry until aro deprecator usque denuo ambulo.",
        "Step 3: Season avocado spread until consuasor esse sub.",
        "Step 4: Fold squid until creber uterque depraedor.",
        "Step 5: Stir lemongrass until centum officia maxime pauci distinctio."
      ],
      "tags": [
        "quick",
        "vegetarian",
        "dairy-free",
        "vegan"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-73/1200/800",
      "createdAt": "2026-01-08T01:40:37.018Z",
      "updatedAt": "2026-01-08T01:40:37.018Z"
    },
    {
      "id": 74,
      "userId": 229,
      "title": "sweet Purple Carrot Salad",
      "slug": "sweet-purple-carrot-salad-74",
      "description": "Temeritas excepturi supra amicitia sequi spargo vir animi. Amor annus spiritus bos utrum. Aranea defendo solitudo auctus bardus.",
      "cuisine": "vietnamese",
      "difficulty": "hard",
      "prepMinutes": 14,
      "cookMinutes": 120,
      "servings": 4,
      "ingredients": [
        "0.25 tbsp limes",
        "1.5 tbsp sprouts",
        "2.25 tbsp soba",
        "4 tbsp ricemilk",
        "3.75 g sunflower oil",
        "1.25 cup soy flour",
        "0.75 lb butter"
      ],
      "instructions": [
        "Step 1: Season longan until summa timidus dolore deleniti.",
        "Step 2: Simmer broccoli until vir cariosus vero fugiat.",
        "Step 3: Whisk margarine until decipio veritas villa antea.",
        "Step 4: Garnish mulberries until aeternus bene.",
        "Step 5: Garnish juniper berries until suffragium tristis."
      ],
      "tags": [
        "weeknight",
        "comfort",
        "quick"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-74/1200/800",
      "createdAt": "2025-01-03T16:34:14.413Z",
      "updatedAt": "2025-01-03T16:34:14.413Z"
    },
    {
      "id": 75,
      "userId": 121,
      "title": "creamy Watermelon-glazed Pigeon Skewers",
      "slug": "creamy-watermelon-glazed-pigeon-skewers-75",
      "description": "Coma cohaero subvenio sint arcus numquam arbustum.",
      "cuisine": "chinese",
      "difficulty": "medium",
      "prepMinutes": 35,
      "cookMinutes": 16,
      "servings": 4,
      "ingredients": [
        "3.75 cup rice flour",
        "2.25 g fromage blanc",
        "0.5 lb squid",
        "0.75 cup koshihikari rice",
        "1 tsp bocconcini",
        "4 oz snowpeas"
      ],
      "instructions": [
        "Step 1: Fold cumin until cum teneo sollers.",
        "Step 2: Season enoki mushrooms until utor adicio.",
        "Step 3: Simmer okra until substantia arceo tum tolero cunabula.",
        "Step 4: Combine apple cider vinegar until substantia contra cornu accusantium.",
        "Step 5: Fold ricotta until sub spiritus cumque temptatio."
      ],
      "tags": [],
      "imageUrl": "https://picsum.photos/seed/recipe-75/1200/800",
      "createdAt": "2025-12-13T19:44:03.601Z",
      "updatedAt": "2025-12-13T19:44:03.601Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=4&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=5&limit=24",
    "prev": "/api/v1/recipes?page=3&limit=24"
  }
}