Sushi Roll
- userId
-
Judy Hackett @judy_hackett49
- name
- Sushi Roll
- kind
- lunch
- calories
- 409
- proteinGrams
- 26.7
- carbsGrams
- 57.7
- fatGrams
- 7.9
- eatenAt
- createdAt
Overview
meals / #54
Sushi Roll
#54
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/54" ); 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/54"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/54"
)
meal = res.json() Response
{
"id": 54,
"userId": 13,
"name": "Sushi Roll",
"kind": "lunch",
"calories": 409,
"proteinGrams": 26.7,
"carbsGrams": 57.7,
"fatGrams": 7.9,
"eatenAt": "2025-12-27T12:10:08.188Z",
"createdAt": "2025-12-27T12:21:33.137Z"
}