Chicken Caesar Salad
- userId
-
Audreanne Will @audreanne_will
- name
- Chicken Caesar Salad
- kind
- lunch
- calories
- 528
- proteinGrams
- 55.1
- carbsGrams
- 30.8
- fatGrams
- 20.5
- eatenAt
- createdAt
Overview
meals / #528
Chicken Caesar Salad
#528
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/528" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/528" ); 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/528"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/528"
)
meal = res.json() Response
{
"id": 528,
"userId": 127,
"name": "Chicken Caesar Salad",
"kind": "lunch",
"calories": 528,
"proteinGrams": 55.1,
"carbsGrams": 30.8,
"fatGrams": 20.5,
"eatenAt": "2025-12-13T19:14:25.550Z",
"createdAt": "2025-12-13T19:37:30.107Z"
}