example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 3 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": 49,
      "userId": 71,
      "title": "spicy Alisa's Special Bean Shoots",
      "slug": "spicy-alisa-s-special-bean-shoots-49",
      "description": "Thymbra viduo pauper verbum caput quos corrigo. Accusator articulus speciosus corrigo laboriosam decumbo corona adduco. Tenus atque dapifer vinculum.",
      "cuisine": "italian",
      "difficulty": "easy",
      "prepMinutes": 58,
      "cookMinutes": 7,
      "servings": 1,
      "ingredients": [
        "1.5 tbsp red pepper",
        "1.75 tbsp file powder",
        "3.5 cup papaya",
        "3.25 tsp cottage cheese",
        "2.75 tsp flathead",
        "1.25 oz swordfish",
        "2.5 oz borlotti beans",
        "3.25 cup beans",
        "2.5 cup soy flour",
        "3 g safflower oil",
        "3.25 lb agave syrup",
        "0.5 tsp fromage blanc",
        "2 cup jasmine rice"
      ],
      "instructions": [
        "Step 1: Simmer potatoes until perferendis absque alter causa.",
        "Step 2: Stir sage until desolo defluo nulla.",
        "Step 3: Whisk brazil nut until consequatur utroque officia.",
        "Step 4: Sauté malt vinegar until capillus caste virtus coniecto."
      ],
      "tags": [
        "vegan",
        "healthy",
        "family",
        "weeknight"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-49/1200/800",
      "createdAt": "2026-02-24T15:37:35.842Z",
      "updatedAt": "2026-02-24T15:37:35.842Z"
    },
    {
      "id": 50,
      "userId": 58,
      "title": "bitter Thyme-rubbed Goose Salad",
      "slug": "bitter-thyme-rubbed-goose-salad-50",
      "description": "Territo xiphias tamdiu atavus ancilla sol pecto. Subseco viridis sumptus depereo delinquo amplexus minima.",
      "cuisine": "french",
      "difficulty": "hard",
      "prepMinutes": 58,
      "cookMinutes": 25,
      "servings": 8,
      "ingredients": [
        "4 tbsp warehou",
        "0.25 tbsp pistachio nut",
        "4 oz capers",
        "2.75 tsp garlic",
        "0.75 tsp haricot beans",
        "2 oz baking soda",
        "2 tbsp ajowan seed",
        "3.5 g wholemeal",
        "0.25 tsp cream cheese",
        "0.25 tbsp nuts",
        "2.25 tsp hazelnut",
        "0.25 oz fennel seeds"
      ],
      "instructions": [
        "Step 1: Stir wasabi until pectus caterva virtus aro.",
        "Step 2: Whisk avocado until cibo tamisium tergiversatio quia attero.",
        "Step 3: Sauté broccoli until deleo spes.",
        "Step 4: Stir brazil nut until curis despecto comedo victus aequus.",
        "Step 5: Season feijoa until sono beneficium.",
        "Step 6: Stir allspice until numquam viriliter earum dignissimos."
      ],
      "tags": [],
      "imageUrl": "https://picsum.photos/seed/recipe-50/1200/800",
      "createdAt": "2024-06-11T15:56:08.495Z",
      "updatedAt": "2024-06-11T15:56:08.495Z"
    },
    {
      "id": 51,
      "userId": 200,
      "title": "fresh Ostrich With Currant Sauce",
      "slug": "fresh-ostrich-with-currant-sauce-51",
      "description": "Celo blanditiis auctor benigne necessitatibus culpo deinde bis verto peccatus. Alter enim combibo utor caute strenuus coepi umquam. Ager pel vulticulus cornu suppellex.",
      "cuisine": "mexican",
      "difficulty": "hard",
      "prepMinutes": 52,
      "cookMinutes": 80,
      "servings": 5,
      "ingredients": [
        "0.75 tbsp scallops",
        "3.75 lb lentils",
        "1 tbsp apple juice concentrate",
        "1 oz swordfish",
        "3.5 g dill",
        "2.5 g buttermilk",
        "1 g kombu",
        "1.75 lb green tea noodles",
        "1.25 tbsp duck",
        "2.75 lb white flour",
        "1.75 oz slivered almonds",
        "1.75 cup tom yum"
      ],
      "instructions": [
        "Step 1: Sauté raisin until curtus aetas claustrum strues.",
        "Step 2: Fold greenwheat freekeh until solutio tremo volup enim cinis.",
        "Step 3: Stir alfalfa until vinco spargo laborum calamitas claro.",
        "Step 4: Stir pecorino until caelum velum succedo.",
        "Step 5: Fold pasta until cribro tabella dens cenaculum.",
        "Step 6: Season watercress until arbor spiculum.",
        "Step 7: Whisk duck until praesentium unde subseco ultio.",
        "Step 8: Stir apricots until cena dolorum adeptio placeat deputo."
      ],
      "tags": [
        "dairy-free",
        "healthy"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-51/1200/800",
      "createdAt": "2024-08-11T10:14:48.123Z",
      "updatedAt": "2024-08-11T10:14:48.123Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=3&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=4&limit=24",
    "prev": "/api/v1/recipes?page=2&limit=24"
  }
}