Grilled Chicken Salad
- userId
-
Koby Pouros @koby_pouros60
- name
- Grilled Chicken Salad
- kind
- lunch
- calories
- 471
- proteinGrams
- 15.2
- carbsGrams
- 56.9
- fatGrams
- 20.3
- eatenAt
- createdAt
Overview
meals / #144
Grilled Chicken Salad
#144
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/144" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/144" ); 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/144"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/144"
)
meal = res.json() Response
{
"id": 144,
"userId": 34,
"name": "Grilled Chicken Salad",
"kind": "lunch",
"calories": 471,
"proteinGrams": 15.2,
"carbsGrams": 56.9,
"fatGrams": 20.3,
"eatenAt": "2025-06-08T17:31:14.371Z",
"createdAt": "2025-06-08T17:43:35.701Z"
}