Grilled Chicken Salad
- userId
-
Emilia Cummerata @emilia_cummerata
- name
- Grilled Chicken Salad
- kind
- lunch
- calories
- 887
- proteinGrams
- 57.5
- carbsGrams
- 77.2
- fatGrams
- 38.7
- eatenAt
- createdAt
Overview
meals / #973
Grilled Chicken Salad
#973
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/973" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/973" ); 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/973"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/973"
)
meal = res.json() Response
{
"id": 973,
"userId": 238,
"name": "Grilled Chicken Salad",
"kind": "lunch",
"calories": 887,
"proteinGrams": 57.5,
"carbsGrams": 77.2,
"fatGrams": 38.7,
"eatenAt": "2025-09-21T23:17:04.298Z",
"createdAt": "2025-09-21T23:34:26.402Z"
}