Chicken Caesar Salad
- userId
-
Lew O'Kon @lew.okon75
- name
- Chicken Caesar Salad
- kind
- lunch
- calories
- 546
- proteinGrams
- 22.6
- carbsGrams
- 36.7
- fatGrams
- 34.3
- eatenAt
- createdAt
Overview
meals / #552
Chicken Caesar Salad
#552
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/552" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/552" ); 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/552"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/552"
)
meal = res.json() Response
{
"id": 552,
"userId": 131,
"name": "Chicken Caesar Salad",
"kind": "lunch",
"calories": 546,
"proteinGrams": 22.6,
"carbsGrams": 36.7,
"fatGrams": 34.3,
"eatenAt": "2026-01-26T04:19:40.205Z",
"createdAt": "2026-01-26T04:27:29.807Z"
}