example-data.com

meals / #147

userId
Karlee Hudson-Turner @karlee.hudson-turner88
name
Grilled Steak
kind
dinner
calories
423
proteinGrams
20.1
carbsGrams
46
fatGrams
17.6
eatenAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/meals/147"
)
meal = res.json()
{
  "id": 147,
  "userId": 36,
  "name": "Grilled Steak",
  "kind": "dinner",
  "calories": 423,
  "proteinGrams": 20.1,
  "carbsGrams": 46,
  "fatGrams": 17.6,
  "eatenAt": "2025-09-16T21:15:34.790Z",
  "createdAt": "2025-09-16T21:45:11.680Z"
}
Draftbit