Hummus and Veggies
- userId
-
Michaela Feeney @michaela_feeney46
- name
- Hummus and Veggies
- kind
- snack
- calories
- 532
- proteinGrams
- 32.9
- carbsGrams
- 69.1
- fatGrams
- 13.8
- eatenAt
- createdAt
Overview
meals / #368
Hummus and Veggies
#368
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/368" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/368" ); 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/368"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/368"
)
meal = res.json() Response
{
"id": 368,
"userId": 87,
"name": "Hummus and Veggies",
"kind": "snack",
"calories": 532,
"proteinGrams": 32.9,
"carbsGrams": 69.1,
"fatGrams": 13.8,
"eatenAt": "2025-06-15T18:28:44.246Z",
"createdAt": "2025-06-15T18:46:18.814Z"
}