goals / #188
- userId
-
Rosemary Krajcik @rosemary_krajcik
- name
- Sleep 8 hours nightly
- category
- sleep
- targetValue
- 8.3
- currentValue
- 7.8
- unit
- hours/night
- deadline
- —
- isCompleted
- false
- createdAt
Component variants
Medium
Sleep 8 hours nightly
#188
Small
goals/188 Related
References
curl -sS \
"https://example-data.com/api/v1/goals/188" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/goals/188"
);
const goal = await res.json();import type { Goal } from "https://example-data.com/types/goals.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/goals/188"
);
const goal = (await res.json()) as Goal;import requests
res = requests.get(
"https://example-data.com/api/v1/goals/188"
)
goal = res.json() {
"id": 188,
"userId": 191,
"name": "Sleep 8 hours nightly",
"category": "sleep",
"targetValue": 8.3,
"currentValue": 7.8,
"unit": "hours/night",
"deadline": null,
"isCompleted": false,
"createdAt": "2025-12-21T09:30:40.739Z"
}