Smoothie Bowl
- userId
-
Minerva Hettinger @minerva_hettinger
- name
- Smoothie Bowl
- kind
- breakfast
- calories
- 645
- proteinGrams
- 18.6
- carbsGrams
- 64.7
- fatGrams
- 34.6
- eatenAt
- createdAt
Overview
meals / #753
Smoothie Bowl
#753
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/753" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/753" ); 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/753"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/753"
)
meal = res.json() Response
{
"id": 753,
"userId": 183,
"name": "Smoothie Bowl",
"kind": "breakfast",
"calories": 645,
"proteinGrams": 18.6,
"carbsGrams": 64.7,
"fatGrams": 34.6,
"eatenAt": "2025-06-29T22:05:32.696Z",
"createdAt": "2025-06-29T22:05:50.228Z"
}