Falafel Bowl
- userId
-
Ludwig Stiedemann @ludwig_stiedemann
- name
- Falafel Bowl
- kind
- lunch
- calories
- 606
- proteinGrams
- 16.1
- carbsGrams
- 58
- fatGrams
- 34.4
- eatenAt
- createdAt
Overview
meals / #553
Falafel Bowl
#553
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/553" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/553" ); const meal = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/meals.d.ts https://example-data.com/types/meals.d.ts
import type { Meal } from "./types/meals";
const res = await fetch(
"https://example-data.com/api/v1/meals/553"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/553"
)
meal = res.json() Response
{
"id": 553,
"userId": 132,
"name": "Falafel Bowl",
"kind": "lunch",
"calories": 606,
"proteinGrams": 16.1,
"carbsGrams": 58,
"fatGrams": 34.4,
"eatenAt": "2025-07-28T19:13:49.040Z",
"createdAt": "2025-07-28T19:19:38.964Z"
}