Smoothie Bowl
- userId
-
Sam Hegmann-Jast @sam_hegmann-jast86
- name
- Smoothie Bowl
- kind
- breakfast
- calories
- 469
- proteinGrams
- 50.6
- carbsGrams
- 56.6
- fatGrams
- 4.5
- eatenAt
- createdAt
Overview
meals / #478
Smoothie Bowl
#478
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/478" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/478" ); 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/478"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/478"
)
meal = res.json() Response
{
"id": 478,
"userId": 114,
"name": "Smoothie Bowl",
"kind": "breakfast",
"calories": 469,
"proteinGrams": 50.6,
"carbsGrams": 56.6,
"fatGrams": 4.5,
"eatenAt": "2025-12-26T06:47:01.571Z",
"createdAt": "2025-12-26T06:48:30.554Z"
}