meals / #173
- userId
-
Lamar Wilkinson @lamar_wilkinson43
- name
- Protein Bar
- kind
- snack
- calories
- 586
- proteinGrams
- 46.4
- carbsGrams
- 36.7
- fatGrams
- 28.2
- eatenAt
- createdAt
Component variants
Medium
Protein Bar
#173
Small
meals/173 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/173" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/173"
);
const meal = await res.json();import type { Meal } from "https://example-data.com/types/meals.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/meals/173"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/173"
)
meal = res.json() {
"id": 173,
"userId": 43,
"name": "Protein Bar",
"kind": "snack",
"calories": 586,
"proteinGrams": 46.4,
"carbsGrams": 36.7,
"fatGrams": 28.2,
"eatenAt": "2026-05-11T15:35:44.579Z",
"createdAt": "2026-05-11T15:45:07.443Z"
}