Grilled Chicken Salad
- userId
-
Americo Hoppe @americo_hoppe57
- name
- Grilled Chicken Salad
- kind
- lunch
- calories
- 678
- proteinGrams
- 36.3
- carbsGrams
- 52.3
- fatGrams
- 35.9
- eatenAt
- createdAt
Overview
meals / #727
Grilled Chicken Salad
#727
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/727" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/727" ); 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/727"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/727"
)
meal = res.json() Response
{
"id": 727,
"userId": 177,
"name": "Grilled Chicken Salad",
"kind": "lunch",
"calories": 678,
"proteinGrams": 36.3,
"carbsGrams": 52.3,
"fatGrams": 35.9,
"eatenAt": "2025-11-13T15:05:35.834Z",
"createdAt": "2025-11-13T15:34:31.755Z"
}