meals / #100
- userId
-
Ericka DuBuque @ericka.dubuque
- name
- Mediterranean Bowl
- kind
- dinner
- calories
- 436
- proteinGrams
- 6.5
- carbsGrams
- 27.2
- fatGrams
- 33.5
- eatenAt
- createdAt
Component variants
Medium
Mediterranean Bowl
#100
Small
meals/100 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/100" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/100"
);
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/100"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/100"
)
meal = res.json() {
"id": 100,
"userId": 23,
"name": "Mediterranean Bowl",
"kind": "dinner",
"calories": 436,
"proteinGrams": 6.5,
"carbsGrams": 27.2,
"fatGrams": 33.5,
"eatenAt": "2025-07-22T22:28:02.948Z",
"createdAt": "2025-07-22T22:28:54.096Z"
}