example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 9 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": 193,
      "userId": 193,
      "title": "tender Poke",
      "slug": "tender-poke-193",
      "description": "Tollo aranea audacia nesciunt aqua. Commodo voveo tenuis. Tremo circumvenio provident minus taedium atrocitas utor arbustum vesco utor.",
      "cuisine": "japanese",
      "difficulty": "medium",
      "prepMinutes": 50,
      "cookMinutes": 100,
      "servings": 7,
      "ingredients": [
        "1.25 oz snowpeas",
        "4 oz amchur",
        "0.5 oz cream cheese",
        "1 tbsp cherries",
        "1.75 tsp celery",
        "3.25 cup morwong",
        "2.25 tsp kidney beans",
        "2 tsp pineapple",
        "0.5 tbsp oyster sauce",
        "0.25 tbsp thyme",
        "2.75 lb monkfish",
        "1 lb pumpkin",
        "1.5 lb celery"
      ],
      "instructions": [
        "Step 1: Sauté amchur until coniecto vulariter vere.",
        "Step 2: Combine monkfish until ante creator careo.",
        "Step 3: Garnish hijiki until ustulo verumtamen ad dedico.",
        "Step 4: Whisk white flour until circumvenio sto ustilo cenaculum decretum.",
        "Step 5: Stir pistachio nut until voveo alo deleniti delibero demens.",
        "Step 6: Sauté corn syrup until cenaculum avarus sodalitas contabesco verus.",
        "Step 7: Stir butter until tolero tabella complectus cognatus."
      ],
      "tags": [],
      "imageUrl": "https://picsum.photos/seed/recipe-193/1200/800",
      "createdAt": "2025-12-28T05:46:17.507Z",
      "updatedAt": "2025-12-28T05:46:17.507Z"
    },
    {
      "id": 194,
      "userId": 23,
      "title": "zesty Massaman Curry",
      "slug": "zesty-massaman-curry-194",
      "description": "Aurum reiciendis tepesco sol desino abundans pariatur cupiditate cetera.",
      "cuisine": "italian",
      "difficulty": "medium",
      "prepMinutes": 15,
      "cookMinutes": 123,
      "servings": 7,
      "ingredients": [
        "1 tsp oats",
        "3.75 tbsp quark",
        "3 lb pandanus leaves",
        "1.5 oz raspberry",
        "0.25 tsp flounder",
        "1.75 g red cabbage",
        "4 lb wheatgrass juice",
        "0.25 tbsp asian noodles",
        "2.25 tsp lettuce",
        "1.5 oz paprik"
      ],
      "instructions": [
        "Step 1: Stir mace until patior velit voluptates conduco.",
        "Step 2: Stir vinegar until nobis dolorum apparatus vociferor.",
        "Step 3: Stir cauliflower until cruentus quod culpa.",
        "Step 4: Stir blueberries until texo aegrus."
      ],
      "tags": [],
      "imageUrl": "https://picsum.photos/seed/recipe-194/1200/800",
      "createdAt": "2024-07-24T13:17:17.319Z",
      "updatedAt": "2024-07-24T13:17:17.319Z"
    },
    {
      "id": 195,
      "userId": 9,
      "title": "fresh Herbes De Provence-crusted Kangaroo",
      "slug": "fresh-herbes-de-provence-crusted-kangaroo-195",
      "description": "Clementia solium conforto.",
      "cuisine": "mexican",
      "difficulty": "hard",
      "prepMinutes": 22,
      "cookMinutes": 146,
      "servings": 8,
      "ingredients": [
        "3.25 tbsp lemon",
        "2.25 g harissa",
        "2.5 lb pomegranate",
        "2 lb coriander leaves",
        "2 tsp rice paper",
        "1.25 oz capers",
        "2.75 tsp tea",
        "3.5 g flounder",
        "3.5 lb turkey",
        "3.25 lb wheatgrass juice",
        "0.5 tbsp coconut oil",
        "3.75 g brussels sprouts"
      ],
      "instructions": [
        "Step 1: Season calamari until patrocinor deorsum deduco unus.",
        "Step 2: Stir pistachio nut until sortitus canto vel conforto approbo.",
        "Step 3: Season wholemeal until absconditus thymum altus velit.",
        "Step 4: Combine rose water until averto super cultura.",
        "Step 5: Simmer jewfish until cubicularis contigo.",
        "Step 6: Sauté camomile until carbo cernuus amitto.",
        "Step 7: Sauté cardamom until deludo depromo depono vetus.",
        "Step 8: Garnish avocado until pecto comminor degenero ultra."
      ],
      "tags": [
        "low-carb",
        "spicy",
        "dairy-free",
        "quick"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-195/1200/800",
      "createdAt": "2025-07-14T13:04:15.102Z",
      "updatedAt": "2025-07-14T13:04:15.102Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=9&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=10&limit=24",
    "prev": "/api/v1/recipes?page=8&limit=24"
  }
}