meals
meals
Page 37 of 43.
Overview
-
Protein Shake
#865
-
Quinoa Bowl
#866
-
Tofu Curry
#867
-
Egg White Omelette
#868
-
Lentil Soup
#869
-
Protein Shake
#870
-
Trail Mix
#871
-
Chicken Caesar Salad
#872
-
Granola Bowl
#873
-
Grilled Steak
#874
-
String Cheese
#875
-
Tofu Curry
#876
-
Beef Tacos
#877
-
Beef Tacos
#878
-
Falafel Bowl
#879
-
Protein Shake
#880
-
String Cheese
#881
-
Protein Bar
#882
-
Grilled Chicken Salad
#883
-
Grilled Chicken Salad
#884
-
Oatmeal with Berries
#885
-
Rice Cakes
#886
-
Protein Shake
#887
-
Beef Tacos
#888
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": 865,
"userId": 210,
"name": "Protein Shake",
"kind": "breakfast",
"calories": 508,
"proteinGrams": 17.6,
"carbsGrams": 24.7,
"fatGrams": 37.6,
"eatenAt": "2025-12-16T02:39:41.917Z",
"createdAt": "2025-12-16T02:58:30.773Z"
},
{
"id": 866,
"userId": 210,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 508,
"proteinGrams": 32.9,
"carbsGrams": 42.7,
"fatGrams": 22.8,
"eatenAt": "2026-04-01T06:43:17.429Z",
"createdAt": "2026-04-01T07:12:46.115Z"
},
{
"id": 867,
"userId": 211,
"name": "Tofu Curry",
"kind": "dinner",
"calories": 558,
"proteinGrams": 26,
"carbsGrams": 71.5,
"fatGrams": 18.7,
"eatenAt": "2025-09-19T20:10:53.116Z",
"createdAt": "2025-09-19T20:36:04.944Z"
}
],
"meta": {
"page": 37,
"limit": 24,
"total": 1016,
"totalPages": 43
},
"links": {
"self": "/api/v1/meals?page=37&limit=24",
"first": "/api/v1/meals?page=1&limit=24",
"last": "/api/v1/meals?page=43&limit=24",
"next": "/api/v1/meals?page=38&limit=24",
"prev": "/api/v1/meals?page=36&limit=24"
}
}