meals / #200
- userId
-
Green Kozey @green_kozey22
- name
- Protein Bar
- kind
- snack
- calories
- 396
- proteinGrams
- 25
- carbsGrams
- 42.2
- fatGrams
- 14.1
- eatenAt
- createdAt
Component variants
Medium
Protein Bar
#200
Small
meals/200 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/200"
);
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/200"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/200"
)
meal = res.json() {
"id": 200,
"userId": 49,
"name": "Protein Bar",
"kind": "snack",
"calories": 396,
"proteinGrams": 25,
"carbsGrams": 42.2,
"fatGrams": 14.1,
"eatenAt": "2026-02-24T07:28:59.279Z",
"createdAt": "2026-02-24T07:45:39.054Z"
}