meals
meals
Page 36 of 43.
Overview
-
Scrambled Eggs
#841
-
Almonds
#842
-
Egg White Omelette
#843
-
Chicken Stir-Fry
#844
-
Protein Shake
#845
-
Cottage Cheese
#846
-
Grilled Turkey Breast
#847
-
Grilled Chicken Salad
#848
-
Grilled Turkey Breast
#849
-
Greek Yogurt Parfait
#850
-
Mediterranean Bowl
#851
-
Trail Mix
#852
-
Apple and Peanut Butter
#853
-
Egg White Omelette
#854
-
Banana
#855
-
Tuna Wrap
#856
-
Turkey Sandwich
#857
-
Protein Bar
#858
-
Hummus and Veggies
#859
-
Almonds
#860
-
Lentil Soup
#861
-
Overnight Oats
#862
-
Avocado Toast
#863
-
Cottage Cheese
#864
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/meals?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/meals.d.ts https://example-data.com/types/meals.d.ts
import type { Meal, ListEnvelope } from "./types/meals";
const res = await fetch(
"https://example-data.com/api/v1/meals?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Meal>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 841,
"userId": 204,
"name": "Scrambled Eggs",
"kind": "breakfast",
"calories": 474,
"proteinGrams": 40.2,
"carbsGrams": 53.3,
"fatGrams": 11.1,
"eatenAt": "2025-08-31T12:35:43.574Z",
"createdAt": "2025-08-31T12:36:32.363Z"
},
{
"id": 842,
"userId": 204,
"name": "Almonds",
"kind": "snack",
"calories": 607,
"proteinGrams": 21,
"carbsGrams": 44.4,
"fatGrams": 38.4,
"eatenAt": "2026-01-11T01:00:14.844Z",
"createdAt": "2026-01-11T01:09:29.449Z"
},
{
"id": 843,
"userId": 205,
"name": "Egg White Omelette",
"kind": "breakfast",
"calories": 360,
"proteinGrams": 7.9,
"carbsGrams": 44.4,
"fatGrams": 16.8,
"eatenAt": "2026-02-02T22:12:22.048Z",
"createdAt": "2026-02-02T22:14:32.705Z"
}
],
"meta": {
"page": 36,
"limit": 24,
"total": 1016,
"totalPages": 43
},
"links": {
"self": "/api/v1/meals?page=36&limit=24",
"first": "/api/v1/meals?page=1&limit=24",
"last": "/api/v1/meals?page=43&limit=24",
"next": "/api/v1/meals?page=37&limit=24",
"prev": "/api/v1/meals?page=35&limit=24"
}
}