example-data.com
Menu
Browse docs and collections

Overview

meals / #786

Hard Boiled Eggs

userId
Wilton Dietrich @wilton.dietrich23
name
Hard Boiled Eggs
kind
snack
calories
474
proteinGrams
16
carbsGrams
68.4
fatGrams
15.1
eatenAt
createdAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/meals/786" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/meals/786"
);
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/786"
);
const meal = (await res.json()) as Meal;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/meals/786"
)
meal = res.json()

Response

{
  "id": 786,
  "userId": 190,
  "name": "Hard Boiled Eggs",
  "kind": "snack",
  "calories": 474,
  "proteinGrams": 16,
  "carbsGrams": 68.4,
  "fatGrams": 15.1,
  "eatenAt": "2026-02-23T23:34:24.336Z",
  "createdAt": "2026-02-23T23:37:53.154Z"
}