example-data.com

meals / #47

userId
Leonel Hamill @leonel_hamill33
name
Grilled Turkey Breast
kind
dinner
calories
421
proteinGrams
28.9
carbsGrams
46.2
fatGrams
13.4
eatenAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/meals/47" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/meals/47"
);
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/47"
);
const meal = (await res.json()) as Meal;
import requests

res = requests.get(
    "https://example-data.com/api/v1/meals/47"
)
meal = res.json()
{
  "id": 47,
  "userId": 11,
  "name": "Grilled Turkey Breast",
  "kind": "dinner",
  "calories": 421,
  "proteinGrams": 28.9,
  "carbsGrams": 46.2,
  "fatGrams": 13.4,
  "eatenAt": "2026-02-21T15:15:20.105Z",
  "createdAt": "2026-02-21T15:17:13.517Z"
}
Draftbit