Grilled Chicken Salad
- userId
-
Oran Torphy @oran_torphy
- name
- Grilled Chicken Salad
- kind
- lunch
- calories
- 684
- proteinGrams
- 51.1
- carbsGrams
- 37.5
- fatGrams
- 36.6
- eatenAt
- createdAt
Overview
meals / #778
Grilled Chicken Salad
#778
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/778" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/778" ); 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/778"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/778"
)
meal = res.json() Response
{
"id": 778,
"userId": 189,
"name": "Grilled Chicken Salad",
"kind": "lunch",
"calories": 684,
"proteinGrams": 51.1,
"carbsGrams": 37.5,
"fatGrams": 36.6,
"eatenAt": "2025-07-02T18:26:16.769Z",
"createdAt": "2025-07-02T18:37:17.722Z"
}