meals / #43
- userId
-
Leonel Hamill @leonel_hamill33
- name
- Mediterranean Bowl
- kind
- dinner
- calories
- 664
- proteinGrams
- 47.4
- carbsGrams
- 38.3
- fatGrams
- 35.7
- eatenAt
- createdAt
Component variants
Medium
Mediterranean Bowl
#43
Small
meals/43 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/43"
);
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/43"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/43"
)
meal = res.json() {
"id": 43,
"userId": 11,
"name": "Mediterranean Bowl",
"kind": "dinner",
"calories": 664,
"proteinGrams": 47.4,
"carbsGrams": 38.3,
"fatGrams": 35.7,
"eatenAt": "2025-12-15T15:27:15.732Z",
"createdAt": "2025-12-15T15:47:20.467Z"
}