Brown Rice and Veggies
- userId
-
Elva Roberts @elva.roberts48
- name
- Brown Rice and Veggies
- kind
- lunch
- calories
- 487
- proteinGrams
- 13.8
- carbsGrams
- 45.7
- fatGrams
- 27.7
- eatenAt
- createdAt
Overview
meals / #443
Brown Rice and Veggies
#443
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/443" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/443" ); 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/443"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/443"
)
meal = res.json() Response
{
"id": 443,
"userId": 107,
"name": "Brown Rice and Veggies",
"kind": "lunch",
"calories": 487,
"proteinGrams": 13.8,
"carbsGrams": 45.7,
"fatGrams": 27.7,
"eatenAt": "2026-05-08T09:23:31.661Z",
"createdAt": "2026-05-08T09:39:20.214Z"
}