Mediterranean Bowl
- userId
-
Alvina Koch @alvina.koch8
- name
- Mediterranean Bowl
- kind
- dinner
- calories
- 517
- proteinGrams
- 57.9
- carbsGrams
- 12
- fatGrams
- 26.4
- eatenAt
- createdAt
Overview
meals / #87
Mediterranean Bowl
#87
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/87" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/87" ); 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/87"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/87"
)
meal = res.json() Response
{
"id": 87,
"userId": 20,
"name": "Mediterranean Bowl",
"kind": "dinner",
"calories": 517,
"proteinGrams": 57.9,
"carbsGrams": 12,
"fatGrams": 26.4,
"eatenAt": "2026-04-24T01:33:13.441Z",
"createdAt": "2026-04-24T01:35:02.376Z"
}