Chicken Caesar Salad
- userId
-
Della Labadie @della_labadie
- name
- Chicken Caesar Salad
- kind
- lunch
- calories
- 323
- proteinGrams
- 14.2
- carbsGrams
- 52.8
- fatGrams
- 6.1
- eatenAt
- createdAt
Overview
meals / #186
Chicken Caesar Salad
#186
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/186" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/186" ); 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/186"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/186"
)
meal = res.json() Response
{
"id": 186,
"userId": 46,
"name": "Chicken Caesar Salad",
"kind": "lunch",
"calories": 323,
"proteinGrams": 14.2,
"carbsGrams": 52.8,
"fatGrams": 6.1,
"eatenAt": "2026-02-17T16:39:49.127Z",
"createdAt": "2026-02-17T16:49:03.950Z"
}