Tuna Wrap
- userId
-
Hilda Crooks @hilda_crooks61
- name
- Tuna Wrap
- kind
- lunch
- calories
- 142
- proteinGrams
- 12.7
- carbsGrams
- 14.5
- fatGrams
- 3.7
- eatenAt
- createdAt
Overview
meals / #767
Tuna Wrap
#767
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/767" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/767" ); 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/767"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/767"
)
meal = res.json() Response
{
"id": 767,
"userId": 187,
"name": "Tuna Wrap",
"kind": "lunch",
"calories": 142,
"proteinGrams": 12.7,
"carbsGrams": 14.5,
"fatGrams": 3.7,
"eatenAt": "2025-07-14T07:40:21.127Z",
"createdAt": "2025-07-14T08:03:52.247Z"
}