meals / #222
- userId
-
Jo Haag-Mayer @jo_haag-mayer
- name
- Grilled Chicken Salad
- kind
- lunch
- calories
- 702
- proteinGrams
- 50.9
- carbsGrams
- 47
- fatGrams
- 34.5
- eatenAt
- createdAt
Component variants
Medium
Grilled Chicken Salad
#222
Small
meals/222 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/222" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/222"
);
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/222"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/222"
)
meal = res.json() {
"id": 222,
"userId": 54,
"name": "Grilled Chicken Salad",
"kind": "lunch",
"calories": 702,
"proteinGrams": 50.9,
"carbsGrams": 47,
"fatGrams": 34.5,
"eatenAt": "2025-07-14T16:09:53.743Z",
"createdAt": "2025-07-14T16:16:59.032Z"
}