Brown Rice and Veggies
- userId
-
Bradford Doyle @bradford.doyle42
- name
- Brown Rice and Veggies
- kind
- lunch
- calories
- 171
- proteinGrams
- 5.1
- carbsGrams
- 19.2
- fatGrams
- 8.2
- eatenAt
- createdAt
Overview
meals / #332
Brown Rice and Veggies
#332
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/332" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/332" ); 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/332"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/332"
)
meal = res.json() Response
{
"id": 332,
"userId": 79,
"name": "Brown Rice and Veggies",
"kind": "lunch",
"calories": 171,
"proteinGrams": 5.1,
"carbsGrams": 19.2,
"fatGrams": 8.2,
"eatenAt": "2026-03-28T20:19:55.087Z",
"createdAt": "2026-03-28T20:42:23.925Z"
}