Tuna Wrap
- userId
-
Trace Witting-Stamm @trace_witting-stamm17
- name
- Tuna Wrap
- kind
- lunch
- calories
- 446
- proteinGrams
- 47.5
- carbsGrams
- 48.8
- fatGrams
- 6.7
- eatenAt
- createdAt
Overview
meals / #169
Tuna Wrap
#169
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/169" ); 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/169"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/169"
)
meal = res.json() Response
{
"id": 169,
"userId": 42,
"name": "Tuna Wrap",
"kind": "lunch",
"calories": 446,
"proteinGrams": 47.5,
"carbsGrams": 48.8,
"fatGrams": 6.7,
"eatenAt": "2025-10-23T16:38:29.064Z",
"createdAt": "2025-10-23T16:43:00.046Z"
}