example-data.com

meals

meals

Page 4 of 10.

userId
Gavin Lowe @gavin_lowe
name
Grilled Chicken Salad
kind
lunch
calories
704
proteinGrams
53.6
carbsGrams
38.1
fatGrams
37.5
eatenAt
createdAt
userId
Gavin Lowe @gavin_lowe
name
Granola Bowl
kind
breakfast
calories
729
proteinGrams
38.9
carbsGrams
69.5
fatGrams
32.8
eatenAt
createdAt
userId
Gavin Lowe @gavin_lowe
name
Oatmeal with Berries
kind
breakfast
calories
598
proteinGrams
47.3
carbsGrams
57.9
fatGrams
19.7
eatenAt
createdAt
userId
Gavin Lowe @gavin_lowe
name
Hummus and Veggies
kind
snack
calories
299
proteinGrams
6.8
carbsGrams
19.6
fatGrams
21.5
eatenAt
createdAt
userId
Kenya Abshire @kenya.abshire
name
Banana
kind
snack
calories
415
proteinGrams
17.5
carbsGrams
68.8
fatGrams
7.8
eatenAt
createdAt
userId
Kenya Abshire @kenya.abshire
name
Tuna Wrap
kind
lunch
calories
283
proteinGrams
6.4
carbsGrams
18.1
fatGrams
20.5
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": 73,
      "userId": 17,
      "name": "Grilled Chicken Salad",
      "kind": "lunch",
      "calories": 704,
      "proteinGrams": 53.6,
      "carbsGrams": 38.1,
      "fatGrams": 37.5,
      "eatenAt": "2026-01-10T02:20:50.595Z",
      "createdAt": "2026-01-10T02:48:21.672Z"
    },
    {
      "id": 74,
      "userId": 17,
      "name": "Granola Bowl",
      "kind": "breakfast",
      "calories": 729,
      "proteinGrams": 38.9,
      "carbsGrams": 69.5,
      "fatGrams": 32.8,
      "eatenAt": "2026-02-07T15:48:13.143Z",
      "createdAt": "2026-02-07T16:03:40.938Z"
    },
    {
      "id": 75,
      "userId": 17,
      "name": "Oatmeal with Berries",
      "kind": "breakfast",
      "calories": 598,
      "proteinGrams": 47.3,
      "carbsGrams": 57.9,
      "fatGrams": 19.7,
      "eatenAt": "2026-05-20T03:24:52.521Z",
      "createdAt": "2026-05-20T03:25:32.814Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 1016,
    "totalPages": 43
  },
  "links": {
    "self": "/api/v1/meals?page=4",
    "next": "/api/v1/meals?page=5",
    "prev": "/api/v1/meals?page=3"
  }
}
Draftbit