Smoothie Bowl
- userId
-
Nikolas Wolf @nikolas.wolf
- name
- Smoothie Bowl
- kind
- breakfast
- calories
- 319
- proteinGrams
- 27.9
- carbsGrams
- 24.8
- fatGrams
- 12
- eatenAt
- createdAt
Overview
meals / #656
Smoothie Bowl
#656
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/656" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/656" ); 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/656"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/656"
)
meal = res.json() Response
{
"id": 656,
"userId": 158,
"name": "Smoothie Bowl",
"kind": "breakfast",
"calories": 319,
"proteinGrams": 27.9,
"carbsGrams": 24.8,
"fatGrams": 12,
"eatenAt": "2026-01-31T21:06:32.662Z",
"createdAt": "2026-01-31T21:09:18.779Z"
}