Almonds
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- name
- Almonds
- kind
- snack
- calories
- 601
- proteinGrams
- 49.5
- carbsGrams
- 12.5
- fatGrams
- 39.2
- eatenAt
- createdAt
Overview
meals / #432
Almonds
#432
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/432" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/432" ); 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/432"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/432"
)
meal = res.json() Response
{
"id": 432,
"userId": 104,
"name": "Almonds",
"kind": "snack",
"calories": 601,
"proteinGrams": 49.5,
"carbsGrams": 12.5,
"fatGrams": 39.2,
"eatenAt": "2025-12-08T00:42:58.431Z",
"createdAt": "2025-12-08T01:00:18.597Z"
}