example-data.com
Menu
Browse docs and collections

recipes

recipes

Page 6 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": 121,
      "userId": 55,
      "title": "crispy Chicken Parm",
      "slug": "crispy-chicken-parm-121",
      "description": "Voluptatibus super torqueo delinquo cohibeo arceo cinis antea cubitum. Tersus desipio viscus usitas accusamus sonitus curiositas. Ocer damnatio desipio sum cuius.",
      "cuisine": "japanese",
      "difficulty": "easy",
      "prepMinutes": 10,
      "cookMinutes": 36,
      "servings": 2,
      "ingredients": [
        "3.5 oz aubergine",
        "1.5 g persimmon",
        "1 tbsp freekeh",
        "1.5 cup broccoli",
        "3 cup amaranth",
        "3.25 g mace",
        "2 tbsp tapioca",
        "2 oz eggs",
        "0.25 oz vermicelli noodles",
        "3.5 oz brazil nut",
        "3 g white rice",
        "1 tbsp avocado"
      ],
      "instructions": [
        "Step 1: Fold incaberries until ipsam absorbeo cariosus incidunt.",
        "Step 2: Whisk beans until debeo teres.",
        "Step 3: Stir barberry until thesaurus atrocitas ea thesis.",
        "Step 4: Garnish parmesan cheese until uxor vitium clarus ancilla.",
        "Step 5: Combine spelt bread until votum ars barba.",
        "Step 6: Sauté lime leaves until terebro torqueo."
      ],
      "tags": [
        "low-carb",
        "high-protein",
        "healthy",
        "vegan"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-121/1200/800",
      "createdAt": "2026-05-12T07:39:06.214Z",
      "updatedAt": "2026-05-12T07:39:06.214Z"
    },
    {
      "id": 122,
      "userId": 108,
      "title": "tender Fish And Chips",
      "slug": "tender-fish-and-chips-122",
      "description": "Adficio umerus tergeo. Altus porro venia benigne solium. Terminatio crastinus arto solus vilicus apud ceno creator texo nemo.",
      "cuisine": "american",
      "difficulty": "medium",
      "prepMinutes": 29,
      "cookMinutes": 131,
      "servings": 7,
      "ingredients": [
        "2.25 oz anchovies",
        "1.5 lb mastic",
        "2.25 lb pumpkin seed",
        "0.25 oz whiting wild rice",
        "2.75 cup butternut lettuce",
        "2.75 oz edamame",
        "1.25 tbsp mahlab"
      ],
      "instructions": [
        "Step 1: Garnish peaches until crux caelestis viridis.",
        "Step 2: Stir smoked trout until condico demo contego vomica.",
        "Step 3: Sauté oats until collum amplexus vomito.",
        "Step 4: Whisk onion until sodalitas tempus adipisci paens.",
        "Step 5: Fold wheatgrass juice until avaritia ceno vulnus.",
        "Step 6: Whisk pandanus leaves until demoror veritatis arbustum terminatio.",
        "Step 7: Season slivered almonds until amplus vivo vulpes.",
        "Step 8: Simmer tahini until decor vulgus.",
        "Step 9: Simmer marigold until vivo spes non.",
        "Step 10: Stir hokkien noodles until repellendus depromo ago."
      ],
      "tags": [
        "high-protein",
        "low-carb",
        "dairy-free",
        "vegetarian"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-122/1200/800",
      "createdAt": "2025-07-15T04:51:25.567Z",
      "updatedAt": "2025-07-15T04:51:25.567Z"
    },
    {
      "id": 123,
      "userId": 220,
      "title": "zesty Salmon Nigiri",
      "slug": "zesty-salmon-nigiri-123",
      "description": "Considero suffoco sophismata speculum tenus reprehenderit aperio. Umbra earum ullam aegrus voluptatibus aequitas approbo.",
      "cuisine": "mexican",
      "difficulty": "medium",
      "prepMinutes": 60,
      "cookMinutes": 96,
      "servings": 5,
      "ingredients": [
        "3 g pomegranate",
        "0.25 cup calamari",
        "2.5 oz clams",
        "3 oz coffee",
        "0.5 tbsp soy sauce",
        "1 oz mastic",
        "2.5 oz flaxseed",
        "2.25 lb tarragon",
        "3 tsp lotus root",
        "3 cup balsamic vinegar",
        "3 tsp redfish"
      ],
      "instructions": [
        "Step 1: Season sunflower oil until facilis quo iste amplexus tempore.",
        "Step 2: Whisk provolone until utor vomica terga accendo adhuc.",
        "Step 3: Sauté turkey until spes temptatio.",
        "Step 4: Stir basil basmati rice until viduo rem.",
        "Step 5: Season avocado spread until aggero porro.",
        "Step 6: Sauté apples until vorago tripudio iste eum.",
        "Step 7: Stir goat cheese until coniuratio villa blanditiis tolero color.",
        "Step 8: Garnish whiting wild rice until adicio adopto consuasor."
      ],
      "tags": [
        "high-protein",
        "family",
        "vegan",
        "weeknight"
      ],
      "imageUrl": "https://picsum.photos/seed/recipe-123/1200/800",
      "createdAt": "2026-05-03T10:13:34.542Z",
      "updatedAt": "2026-05-03T10:13:34.542Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/recipes?page=6&limit=24",
    "first": "/api/v1/recipes?page=1&limit=24",
    "last": "/api/v1/recipes?page=13&limit=24",
    "next": "/api/v1/recipes?page=7&limit=24",
    "prev": "/api/v1/recipes?page=5&limit=24"
  }
}