Oatmeal with Berries
- userId
-
Jarrell Flatley @jarrell_flatley39
- name
- Oatmeal with Berries
- kind
- breakfast
- calories
- 363
- proteinGrams
- 41
- carbsGrams
- 14.1
- fatGrams
- 15.8
- eatenAt
- createdAt
Overview
meals / #254
Oatmeal with Berries
#254
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/254" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/254" ); 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/254"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/254"
)
meal = res.json() Response
{
"id": 254,
"userId": 61,
"name": "Oatmeal with Berries",
"kind": "breakfast",
"calories": 363,
"proteinGrams": 41,
"carbsGrams": 14.1,
"fatGrams": 15.8,
"eatenAt": "2025-06-16T22:08:26.574Z",
"createdAt": "2025-06-16T22:31:58.740Z"
}