Quinoa Bowl
- userId
-
Wilton Dietrich @wilton.dietrich23
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 538
- proteinGrams
- 17.8
- carbsGrams
- 36.2
- fatGrams
- 35.8
- eatenAt
- createdAt
Overview
meals / #787
Quinoa Bowl
#787
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/787" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/787" ); 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/787"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/787"
)
meal = res.json() Response
{
"id": 787,
"userId": 190,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 538,
"proteinGrams": 17.8,
"carbsGrams": 36.2,
"fatGrams": 35.8,
"eatenAt": "2025-11-04T05:48:26.004Z",
"createdAt": "2025-11-04T05:50:03.019Z"
}