meals / #7
- userId
-
Amina King @amina_king41
- name
- Mediterranean Bowl
- kind
- dinner
- calories
- 502
- proteinGrams
- 16.2
- carbsGrams
- 29.2
- fatGrams
- 35.6
- eatenAt
- createdAt
Component variants
Medium
Mediterranean Bowl
#7
Small
meals/7 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/7"
);
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/7"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/7"
)
meal = res.json() {
"id": 7,
"userId": 2,
"name": "Mediterranean Bowl",
"kind": "dinner",
"calories": 502,
"proteinGrams": 16.2,
"carbsGrams": 29.2,
"fatGrams": 35.6,
"eatenAt": "2025-09-04T13:07:45.001Z",
"createdAt": "2025-09-04T13:29:59.543Z"
}