Chicken Caesar Salad
- userId
-
Selina Flatley @selina_flatley
- name
- Chicken Caesar Salad
- kind
- lunch
- calories
- 421
- proteinGrams
- 23.4
- carbsGrams
- 26.3
- fatGrams
- 24.7
- eatenAt
- createdAt
Overview
meals / #800
Chicken Caesar Salad
#800
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/800" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/800" ); 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/800"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/800"
)
meal = res.json() Response
{
"id": 800,
"userId": 193,
"name": "Chicken Caesar Salad",
"kind": "lunch",
"calories": 421,
"proteinGrams": 23.4,
"carbsGrams": 26.3,
"fatGrams": 24.7,
"eatenAt": "2025-10-09T23:18:17.750Z",
"createdAt": "2025-10-09T23:39:42.616Z"
}