example-data.com

meals / #3

userId
Amina King @amina_king41
name
Grilled Turkey Breast
kind
dinner
calories
287
proteinGrams
24.7
carbsGrams
40.6
fatGrams
2.9
eatenAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/meals/3" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/meals/3"
);
const meal = await res.json();
import type { Meal } from "https://example-data.com/types/meals.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/meals/3"
);
const meal = (await res.json()) as Meal;
import requests

res = requests.get(
    "https://example-data.com/api/v1/meals/3"
)
meal = res.json()
{
  "id": 3,
  "userId": 2,
  "name": "Grilled Turkey Breast",
  "kind": "dinner",
  "calories": 287,
  "proteinGrams": 24.7,
  "carbsGrams": 40.6,
  "fatGrams": 2.9,
  "eatenAt": "2025-07-03T20:28:29.665Z",
  "createdAt": "2025-07-03T20:42:18.900Z"
}
Draftbit