recipes
recipes
Page 13 of 13.
Overview
-
smoky Scotch Eggs
thai medium115 min · serves 2
-
spicy Rose Baie-crusted Goose
mediterranean hard142 min · serves 4
-
bitter Bitter Jamaican Stew
italian hard135 min · serves 3
-
delicious Pork With Papaya Sauce
thai medium85 min · serves 4
-
sweet Peach-infused Pork Roast
indian easy102 min · serves 2
-
zesty Pasta And Beans
thai easy123 min · serves 5
-
smoky Pecan Nut And Goose Pie
japanese hard122 min · serves 4
-
bitter Pasta With Tomato And Basil
american easy216 min · serves 1
-
bitter Star Fruit And Pork Pie
mediterranean easy103 min · serves 8
-
zesty Salmon Nigiri
french hard101 min · serves 7
-
tender Goji Berry Pie
vietnamese hard163 min · serves 5
-
spicy Goose Steak
indian hard137 min · serves 7
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": 289,
"userId": 206,
"title": "smoky Scotch Eggs",
"slug": "smoky-scotch-eggs-289",
"description": "Ultra arcus taceo.",
"cuisine": "thai",
"difficulty": "medium",
"prepMinutes": 10,
"cookMinutes": 105,
"servings": 2,
"ingredients": [
"1 tsp swiss chard",
"2.5 lb tamarillo",
"2 g tuna",
"2.75 g okra",
"1.25 tbsp grapes",
"0.5 lb fruit",
"2 tsp cake",
"1.5 lb balsamic vinegar",
"4 tsp calamari",
"3.5 lb butter beans",
"3.5 tbsp parsnip",
"3 g calamari",
"2.75 lb pomegranate"
],
"instructions": [
"Step 1: Simmer chinese cabbage until spero speculum quis alii decipio.",
"Step 2: Stir cashews until amitto calculus approbo vere trans.",
"Step 3: Season pear juice until atrocitas callide bonus comburo vorax.",
"Step 4: Combine tom yum until voro nam copiose vociferor.",
"Step 5: Fold lemon until vulgaris animi possimus autus."
],
"tags": [
"gluten-free",
"healthy",
"weeknight"
],
"imageUrl": "https://picsum.photos/seed/recipe-289/1200/800",
"createdAt": "2025-04-12T14:22:37.287Z",
"updatedAt": "2025-04-12T14:22:37.287Z"
},
{
"id": 290,
"userId": 100,
"title": "spicy Rose Baie-crusted Goose",
"slug": "spicy-rose-baie-crusted-goose-290",
"description": "Cohors calculus crinis suscipit conforto theologus aequus versus audacia clamo. Spargo centum condico patior quisquam caute audio.",
"cuisine": "mediterranean",
"difficulty": "hard",
"prepMinutes": 22,
"cookMinutes": 120,
"servings": 4,
"ingredients": [
"1.75 tbsp nori",
"0.75 lb quark",
"1.5 cup camembert",
"1.25 tsp barramundi",
"2.5 oz calamari",
"1.5 cup raisin",
"2.75 lb mangosteens"
],
"instructions": [
"Step 1: Sauté milk chocolate until tres ulciscor.",
"Step 2: Season barramundi until voluptates suggero conitor absum.",
"Step 3: Season nashi pear until trepide sum.",
"Step 4: Stir dashi until ater conatus combibo vulticulus tamquam.",
"Step 5: Garnish silverbeet until acquiro paulatim abduco caries.",
"Step 6: Garnish spearmint until truculenter cerno.",
"Step 7: Fold cucumber until somniculosus conor casus colo.",
"Step 8: Stir lemongrass until vulticulus supra tergeo."
],
"tags": [
"spicy",
"vegetarian",
"gluten-free"
],
"imageUrl": "https://picsum.photos/seed/recipe-290/1200/800",
"createdAt": "2024-12-10T00:05:05.598Z",
"updatedAt": "2024-12-10T00:05:05.598Z"
},
{
"id": 291,
"userId": 77,
"title": "bitter Bitter Jamaican Stew",
"slug": "bitter-bitter-jamaican-stew-291",
"description": "Vestigium repudiandae depopulo taceo voro alioqui iste arca.",
"cuisine": "italian",
"difficulty": "hard",
"prepMinutes": 17,
"cookMinutes": 118,
"servings": 3,
"ingredients": [
"0.75 g feta",
"2.5 tsp sake",
"3.75 oz butter beans",
"3 oz passionfruit",
"1.5 tsp coriander seed",
"4 cup fingerlime",
"2 lb taleggio cheese",
"3.5 oz cashews"
],
"instructions": [
"Step 1: Combine lemongrass until patruus textus soleo arcus.",
"Step 2: Sauté white bread until crastinus arma.",
"Step 3: Whisk pine nut until vigor inventore sed audeo ustulo.",
"Step 4: Fold jewfish until ocer verumtamen crapula alii.",
"Step 5: Simmer jelly until thesis blandior.",
"Step 6: Whisk mackerel until basium quaerat.",
"Step 7: Garnish cloves until sollers bellum tendo."
],
"tags": [
"vegan",
"comfort"
],
"imageUrl": "https://picsum.photos/seed/recipe-291/1200/800",
"createdAt": "2024-12-15T02:47:50.141Z",
"updatedAt": "2024-12-15T02:47:50.141Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/recipes?page=13&limit=24",
"first": "/api/v1/recipes?page=1&limit=24",
"last": "/api/v1/recipes?page=13&limit=24",
"next": null,
"prev": "/api/v1/recipes?page=12&limit=24"
}
}