Grilled Chicken Salad
- userId
-
Talon Turner @talon.turner59
- name
- Grilled Chicken Salad
- kind
- lunch
- calories
- 704
- proteinGrams
- 20.9
- carbsGrams
- 78.5
- fatGrams
- 34
- eatenAt
- createdAt
Overview
meals / #683
Grilled Chicken Salad
#683
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/683" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/683" ); 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/683"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/683"
)
meal = res.json() Response
{
"id": 683,
"userId": 166,
"name": "Grilled Chicken Salad",
"kind": "lunch",
"calories": 704,
"proteinGrams": 20.9,
"carbsGrams": 78.5,
"fatGrams": 34,
"eatenAt": "2025-10-16T22:09:28.762Z",
"createdAt": "2025-10-16T22:38:30.265Z"
}