Chicken Caesar Salad
- userId
-
Mia Renner @mia.renner47
- name
- Chicken Caesar Salad
- kind
- lunch
- calories
- 334
- proteinGrams
- 23.1
- carbsGrams
- 22
- fatGrams
- 17.1
- eatenAt
- createdAt
Overview
meals / #872
Chicken Caesar Salad
#872
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/872" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/872" ); 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/872"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/872"
)
meal = res.json() Response
{
"id": 872,
"userId": 212,
"name": "Chicken Caesar Salad",
"kind": "lunch",
"calories": 334,
"proteinGrams": 23.1,
"carbsGrams": 22,
"fatGrams": 17.1,
"eatenAt": "2026-03-10T17:33:02.764Z",
"createdAt": "2026-03-10T17:36:48.246Z"
}