meals / #131
- userId
-
Conrad Connelly @conrad.connelly22
- name
- Tofu Curry
- kind
- dinner
- calories
- 409
- proteinGrams
- 14.9
- carbsGrams
- 55.1
- fatGrams
- 14.3
- eatenAt
- createdAt
Component variants
Medium
Tofu Curry
#131
Small
meals/131 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/131" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/131"
);
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/131"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/131"
)
meal = res.json() {
"id": 131,
"userId": 30,
"name": "Tofu Curry",
"kind": "dinner",
"calories": 409,
"proteinGrams": 14.9,
"carbsGrams": 55.1,
"fatGrams": 14.3,
"eatenAt": "2025-06-04T02:14:38.199Z",
"createdAt": "2025-06-04T02:40:33.271Z"
}