Sushi Roll
- userId
-
Mathilde Ziemann-Nienow @mathilde.ziemann-nienow6
- name
- Sushi Roll
- kind
- lunch
- calories
- 374
- proteinGrams
- 26.7
- carbsGrams
- 28.7
- fatGrams
- 16.9
- eatenAt
- createdAt
Overview
meals / #832
Sushi Roll
#832
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/832" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/832" ); 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/832"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/832"
)
meal = res.json() Response
{
"id": 832,
"userId": 202,
"name": "Sushi Roll",
"kind": "lunch",
"calories": 374,
"proteinGrams": 26.7,
"carbsGrams": 28.7,
"fatGrams": 16.9,
"eatenAt": "2025-11-19T16:50:53.847Z",
"createdAt": "2025-11-19T17:15:16.491Z"
}