Apple and Peanut Butter
- userId
-
Marta Harvey @marta.harvey68
- name
- Apple and Peanut Butter
- kind
- snack
- calories
- 642
- proteinGrams
- 37.5
- carbsGrams
- 51
- fatGrams
- 32
- eatenAt
- createdAt
Overview
meals / #466
Apple and Peanut Butter
#466
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/466" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/466" ); 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/466"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/466"
)
meal = res.json() Response
{
"id": 466,
"userId": 112,
"name": "Apple and Peanut Butter",
"kind": "snack",
"calories": 642,
"proteinGrams": 37.5,
"carbsGrams": 51,
"fatGrams": 32,
"eatenAt": "2025-05-30T07:29:51.120Z",
"createdAt": "2025-05-30T07:30:46.933Z"
}