example-data.com
Menu
Browse docs and collections

Overview

meals / #916

Protein Bar

userId
Lilly Rosenbaum @lilly.rosenbaum
name
Protein Bar
kind
snack
calories
615
proteinGrams
14.6
carbsGrams
52.1
fatGrams
38.7
eatenAt
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 916,
  "userId": 223,
  "name": "Protein Bar",
  "kind": "snack",
  "calories": 615,
  "proteinGrams": 14.6,
  "carbsGrams": 52.1,
  "fatGrams": 38.7,
  "eatenAt": "2025-09-20T16:39:37.543Z",
  "createdAt": "2025-09-20T16:45:13.961Z"
}