Tuna Wrap
- userId
-
Allan Buckridge @allan_buckridge
- name
- Tuna Wrap
- kind
- lunch
- calories
- 776
- proteinGrams
- 59.4
- carbsGrams
- 53.8
- fatGrams
- 35.9
- eatenAt
- createdAt
Overview
meals / #435
Tuna Wrap
#435
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/435" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/435" ); 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/435"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/435"
)
meal = res.json() Response
{
"id": 435,
"userId": 106,
"name": "Tuna Wrap",
"kind": "lunch",
"calories": 776,
"proteinGrams": 59.4,
"carbsGrams": 53.8,
"fatGrams": 35.9,
"eatenAt": "2026-05-18T13:11:20.432Z",
"createdAt": "2026-05-18T13:31:34.123Z"
}