meals / #187
- userId
-
Della Labadie @della_labadie
- name
- Baked Salmon
- kind
- dinner
- calories
- 741
- proteinGrams
- 56.8
- carbsGrams
- 59.6
- fatGrams
- 30.6
- eatenAt
- createdAt
Component variants
Medium
Baked Salmon
#187
Small
meals/187 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/187" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/187"
);
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/187"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/187"
)
meal = res.json() {
"id": 187,
"userId": 46,
"name": "Baked Salmon",
"kind": "dinner",
"calories": 741,
"proteinGrams": 56.8,
"carbsGrams": 59.6,
"fatGrams": 30.6,
"eatenAt": "2026-05-18T21:29:17.576Z",
"createdAt": "2026-05-18T21:51:26.770Z"
}