example-data.com

meals

meals

Page 6 of 10.

userId
Rosella Homenick @rosella.homenick
name
Brown Rice and Veggies
kind
lunch
calories
519
proteinGrams
21.6
carbsGrams
32.9
fatGrams
33.4
eatenAt
createdAt
userId
Queen Lubowitz @queen.lubowitz76
name
Cottage Cheese
kind
snack
calories
605
proteinGrams
27.4
carbsGrams
51.4
fatGrams
32.2
eatenAt
createdAt
userId
Queen Lubowitz @queen.lubowitz76
name
Apple and Peanut Butter
kind
snack
calories
675
proteinGrams
29.7
carbsGrams
73.6
fatGrams
29.1
eatenAt
createdAt
userId
Jensen Bashirian @jensen_bashirian
name
Sushi Roll
kind
lunch
calories
714
proteinGrams
24.7
carbsGrams
64.9
fatGrams
39.5
eatenAt
createdAt
userId
Jensen Bashirian @jensen_bashirian
name
Oatmeal with Berries
kind
breakfast
calories
326
proteinGrams
58
carbsGrams
17
fatGrams
2.9
eatenAt
createdAt
userId
Jensen Bashirian @jensen_bashirian
name
Chicken Caesar Salad
kind
lunch
calories
595
proteinGrams
18.4
carbsGrams
53
fatGrams
34.4
eatenAt
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/meals?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/meals?limit=25"
);
const { data, meta } = await res.json();
import type { Meal, ListEnvelope } from "https://example-data.com/types/meals.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/meals?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Meal>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/meals",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 121,
      "userId": 27,
      "name": "Brown Rice and Veggies",
      "kind": "lunch",
      "calories": 519,
      "proteinGrams": 21.6,
      "carbsGrams": 32.9,
      "fatGrams": 33.4,
      "eatenAt": "2025-12-30T23:05:53.830Z",
      "createdAt": "2025-12-30T23:10:00.007Z"
    },
    {
      "id": 122,
      "userId": 28,
      "name": "Cottage Cheese",
      "kind": "snack",
      "calories": 605,
      "proteinGrams": 27.4,
      "carbsGrams": 51.4,
      "fatGrams": 32.2,
      "eatenAt": "2026-03-24T15:05:00.304Z",
      "createdAt": "2026-03-24T15:14:19.387Z"
    },
    {
      "id": 123,
      "userId": 28,
      "name": "Apple and Peanut Butter",
      "kind": "snack",
      "calories": 675,
      "proteinGrams": 29.7,
      "carbsGrams": 73.6,
      "fatGrams": 29.1,
      "eatenAt": "2026-05-12T23:48:52.811Z",
      "createdAt": "2026-05-12T23:57:25.239Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 1016,
    "totalPages": 43
  },
  "links": {
    "self": "/api/v1/meals?page=6",
    "next": "/api/v1/meals?page=7",
    "prev": "/api/v1/meals?page=5"
  }
}
Draftbit