Smoothie Bowl
- userId
-
Marcelina Grady @marcelina_grady19
- name
- Smoothie Bowl
- kind
- breakfast
- calories
- 423
- proteinGrams
- 13.7
- carbsGrams
- 67.8
- fatGrams
- 10.8
- eatenAt
- createdAt
Overview
meals / #986
Smoothie Bowl
#986
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/986" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/986" ); 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/986"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/986"
)
meal = res.json() Response
{
"id": 986,
"userId": 241,
"name": "Smoothie Bowl",
"kind": "breakfast",
"calories": 423,
"proteinGrams": 13.7,
"carbsGrams": 67.8,
"fatGrams": 10.8,
"eatenAt": "2026-05-11T03:54:03.068Z",
"createdAt": "2026-05-11T03:57:18.685Z"
}