Grilled Chicken Salad
- userId
-
Adrain Kris-Hermiston @adrain.kris-hermiston
- name
- Grilled Chicken Salad
- kind
- lunch
- calories
- 829
- proteinGrams
- 46.1
- carbsGrams
- 73.8
- fatGrams
- 38.8
- eatenAt
- createdAt
Overview
meals / #848
Grilled Chicken Salad
#848
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/848" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/848" ); 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/848"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/848"
)
meal = res.json() Response
{
"id": 848,
"userId": 206,
"name": "Grilled Chicken Salad",
"kind": "lunch",
"calories": 829,
"proteinGrams": 46.1,
"carbsGrams": 73.8,
"fatGrams": 38.8,
"eatenAt": "2025-11-30T02:20:21.881Z",
"createdAt": "2025-11-30T02:39:08.300Z"
}