Chicken Caesar Salad
- userId
-
Lacy Gusikowski @lacy.gusikowski
- name
- Chicken Caesar Salad
- kind
- lunch
- calories
- 678
- proteinGrams
- 24.1
- carbsGrams
- 65.1
- fatGrams
- 35.7
- eatenAt
- createdAt
Overview
meals / #192
Chicken Caesar Salad
#192
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/192" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/192" ); 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/192"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/192"
)
meal = res.json() Response
{
"id": 192,
"userId": 47,
"name": "Chicken Caesar Salad",
"kind": "lunch",
"calories": 678,
"proteinGrams": 24.1,
"carbsGrams": 65.1,
"fatGrams": 35.7,
"eatenAt": "2025-07-22T21:06:16.724Z",
"createdAt": "2025-07-22T21:13:32.274Z"
}