Quinoa Bowl
- userId
-
Maymie Boehm @maymie.boehm90
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 479
- proteinGrams
- 29.2
- carbsGrams
- 13.6
- fatGrams
- 34.2
- eatenAt
- createdAt
Overview
meals / #197
Quinoa Bowl
#197
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/197" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/197" ); 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/197"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/197"
)
meal = res.json() Response
{
"id": 197,
"userId": 48,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 479,
"proteinGrams": 29.2,
"carbsGrams": 13.6,
"fatGrams": 34.2,
"eatenAt": "2026-04-01T03:04:37.077Z",
"createdAt": "2026-04-01T03:08:10.914Z"
}