Protein Bar
- userId
-
Americo Hoppe @americo_hoppe57
- name
- Protein Bar
- kind
- snack
- calories
- 204
- proteinGrams
- 30.9
- carbsGrams
- 7.9
- fatGrams
- 5.4
- eatenAt
- createdAt
Overview
meals / #723
Protein Bar
#723
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/723" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/723" ); 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/723"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/723"
)
meal = res.json() Response
{
"id": 723,
"userId": 177,
"name": "Protein Bar",
"kind": "snack",
"calories": 204,
"proteinGrams": 30.9,
"carbsGrams": 7.9,
"fatGrams": 5.4,
"eatenAt": "2026-01-31T03:07:04.709Z",
"createdAt": "2026-01-31T03:28:24.994Z"
}