Hummus and Veggies
- userId
-
Carmel Schultz @carmel.schultz
- name
- Hummus and Veggies
- kind
- snack
- calories
- 555
- proteinGrams
- 27.4
- carbsGrams
- 72.4
- fatGrams
- 17.3
- eatenAt
- createdAt
Overview
meals / #646
Hummus and Veggies
#646
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/646" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/646" ); 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/646"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/646"
)
meal = res.json() Response
{
"id": 646,
"userId": 156,
"name": "Hummus and Veggies",
"kind": "snack",
"calories": 555,
"proteinGrams": 27.4,
"carbsGrams": 72.4,
"fatGrams": 17.3,
"eatenAt": "2025-06-11T22:44:22.249Z",
"createdAt": "2025-06-11T22:55:09.461Z"
}