goals / #78
- userId
-
Berniece Medhurst @berniece_medhurst
- name
- Work out 4x per week
- category
- habit
- targetValue
- 4.2
- currentValue
- 4
- unit
- sessions/week
- deadline
- 2026-08-11
- isCompleted
- false
- createdAt
Component variants
Medium
Work out 4x per week
#78
Small
goals/78 Related
References
curl -sS \
"https://example-data.com/api/v1/goals/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/goals/78"
);
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/78"
);
const goal = (await res.json()) as Goal;import requests
res = requests.get(
"https://example-data.com/api/v1/goals/78"
)
goal = res.json() {
"id": 78,
"userId": 77,
"name": "Work out 4x per week",
"category": "habit",
"targetValue": 4.2,
"currentValue": 4,
"unit": "sessions/week",
"deadline": "2026-08-11",
"isCompleted": false,
"createdAt": "2025-12-02T02:37:48.821Z"
}