Smoothie Bowl
- userId
-
Daren Lockman @daren_lockman67
- name
- Smoothie Bowl
- kind
- breakfast
- calories
- 531
- proteinGrams
- 18.2
- carbsGrams
- 27.2
- fatGrams
- 38.8
- eatenAt
- createdAt
Overview
meals / #484
Smoothie Bowl
#484
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/484" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/484" ); 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/484"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/484"
)
meal = res.json() Response
{
"id": 484,
"userId": 116,
"name": "Smoothie Bowl",
"kind": "breakfast",
"calories": 531,
"proteinGrams": 18.2,
"carbsGrams": 27.2,
"fatGrams": 38.8,
"eatenAt": "2026-02-08T08:43:04.115Z",
"createdAt": "2026-02-08T08:56:46.695Z"
}