Tuna Wrap
- userId
-
Mable West @mable_west
- name
- Tuna Wrap
- kind
- lunch
- calories
- 495
- proteinGrams
- 34.3
- carbsGrams
- 75.3
- fatGrams
- 6.3
- eatenAt
- createdAt
Overview
meals / #366
Tuna Wrap
#366
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/366" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/366" ); 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/366"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/366"
)
meal = res.json() Response
{
"id": 366,
"userId": 86,
"name": "Tuna Wrap",
"kind": "lunch",
"calories": 495,
"proteinGrams": 34.3,
"carbsGrams": 75.3,
"fatGrams": 6.3,
"eatenAt": "2025-10-14T22:14:37.035Z",
"createdAt": "2025-10-14T22:25:46.713Z"
}