meals
meals
Page 21 of 43.
Overview
-
Rice Cakes
#481
-
Falafel Bowl
#482
-
Overnight Oats
#483
-
Smoothie Bowl
#484
-
Granola Bowl
#485
-
Shrimp and Veggies
#486
-
Tuna Wrap
#487
-
Scrambled Eggs
#488
-
Baked Salmon
#489
-
Roasted Chicken
#490
-
Grilled Steak
#491
-
Brown Rice and Veggies
#492
-
Turkey Sandwich
#493
-
Roasted Chicken
#494
-
Chicken Caesar Salad
#495
-
Protein Bar
#496
-
Roasted Chicken
#497
-
Lentil Soup
#498
-
Brown Rice and Veggies
#499
-
Sushi Roll
#500
-
Roasted Chicken
#501
-
Chicken Caesar Salad
#502
-
Lentil Soup
#503
-
Hard Boiled Eggs
#504
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": 481,
"userId": 115,
"name": "Rice Cakes",
"kind": "snack",
"calories": 348,
"proteinGrams": 35.2,
"carbsGrams": 43,
"fatGrams": 3.9,
"eatenAt": "2025-11-02T00:11:03.674Z",
"createdAt": "2025-11-02T00:12:03.395Z"
},
{
"id": 482,
"userId": 115,
"name": "Falafel Bowl",
"kind": "lunch",
"calories": 370,
"proteinGrams": 15.5,
"carbsGrams": 56.4,
"fatGrams": 9.1,
"eatenAt": "2025-12-26T09:25:27.256Z",
"createdAt": "2025-12-26T09:51:31.272Z"
},
{
"id": 483,
"userId": 115,
"name": "Overnight Oats",
"kind": "breakfast",
"calories": 572,
"proteinGrams": 48.8,
"carbsGrams": 76.5,
"fatGrams": 7.9,
"eatenAt": "2026-01-23T13:25:08.712Z",
"createdAt": "2026-01-23T13:48:13.924Z"
}
],
"meta": {
"page": 21,
"limit": 24,
"total": 1016,
"totalPages": 43
},
"links": {
"self": "/api/v1/meals?page=21&limit=24",
"first": "/api/v1/meals?page=1&limit=24",
"last": "/api/v1/meals?page=43&limit=24",
"next": "/api/v1/meals?page=22&limit=24",
"prev": "/api/v1/meals?page=20&limit=24"
}
}