Hummus and Veggies
- userId
-
Cassidy Boehm @cassidy_boehm22
- name
- Hummus and Veggies
- kind
- snack
- calories
- 643
- proteinGrams
- 30.6
- carbsGrams
- 56.9
- fatGrams
- 32.6
- eatenAt
- createdAt
Overview
meals / #838
Hummus and Veggies
#838
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/838" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/838" ); 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/838"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/838"
)
meal = res.json() Response
{
"id": 838,
"userId": 204,
"name": "Hummus and Veggies",
"kind": "snack",
"calories": 643,
"proteinGrams": 30.6,
"carbsGrams": 56.9,
"fatGrams": 32.6,
"eatenAt": "2025-07-09T10:37:30.755Z",
"createdAt": "2025-07-09T10:56:27.309Z"
}