Trail Mix
- userId
-
Lennie Dickinson @lennie_dickinson8
- name
- Trail Mix
- kind
- snack
- calories
- 601
- proteinGrams
- 31.2
- carbsGrams
- 74.8
- fatGrams
- 19.7
- eatenAt
- createdAt
Overview
meals / #507
Trail Mix
#507
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/507" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/507" ); 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/507"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/507"
)
meal = res.json() Response
{
"id": 507,
"userId": 121,
"name": "Trail Mix",
"kind": "snack",
"calories": 601,
"proteinGrams": 31.2,
"carbsGrams": 74.8,
"fatGrams": 19.7,
"eatenAt": "2026-04-10T03:40:02.469Z",
"createdAt": "2026-04-10T04:00:49.394Z"
}