Grilled Chicken Salad
- userId
-
Ethyl Auer @ethyl_auer89
- name
- Grilled Chicken Salad
- kind
- lunch
- calories
- 534
- proteinGrams
- 55.5
- carbsGrams
- 26.5
- fatGrams
- 22.9
- eatenAt
- createdAt
Overview
meals / #395
Grilled Chicken Salad
#395
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/395" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/395" ); 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/395"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/395"
)
meal = res.json() Response
{
"id": 395,
"userId": 95,
"name": "Grilled Chicken Salad",
"kind": "lunch",
"calories": 534,
"proteinGrams": 55.5,
"carbsGrams": 26.5,
"fatGrams": 22.9,
"eatenAt": "2025-08-03T00:35:34.255Z",
"createdAt": "2025-08-03T00:45:27.313Z"
}