goals
goals
Page 6 of 10.
-
Improve flexibility
#121
-
Bench press bodyweight
#122
-
Gain muscle mass
#123
-
Meditate daily
#124
-
Meditate daily
#125
-
Do 100 push-ups
#126
-
Bench press bodyweight
#127
-
Sleep 8 hours nightly
#128
-
Run a 5K
#129
-
Gain muscle mass
#130
-
Lose weight
#131
-
Reduce resting heart rate
#132
-
Bench press bodyweight
#133
-
Walk 10000 steps daily
#134
-
Lose weight
#135
-
Lose weight
#136
-
Lose weight
#137
-
Sleep 8 hours nightly
#138
-
Drink 2L water daily
#139
-
Walk 10000 steps daily
#140
-
Sleep 8 hours nightly
#141
-
Meditate daily
#142
-
Do 100 push-ups
#143
-
Bench press bodyweight
#144
- userId
-
Lennie Dickinson @lennie_dickinson8
- name
- Improve flexibility
- category
- fitness
- targetValue
- 30.6
- currentValue
- 8.1
- unit
- cm
- deadline
- 2026-04-22
- isCompleted
- false
- createdAt
- userId
-
Telly Sanford @telly.sanford
- name
- Bench press bodyweight
- category
- fitness
- targetValue
- 104.5
- currentValue
- 98.1
- unit
- kg
- deadline
- 2026-08-09
- isCompleted
- false
- createdAt
- userId
-
Telly Sanford @telly.sanford
- name
- Gain muscle mass
- category
- weight
- targetValue
- 81.6
- currentValue
- 29.9
- unit
- kg
- deadline
- 2026-10-04
- isCompleted
- false
- createdAt
- userId
-
Aaron Fritsch @aaron.fritsch
- name
- Meditate daily
- category
- habit
- targetValue
- 14.3
- currentValue
- 12.6
- unit
- minutes/day
- deadline
- 2026-06-16
- isCompleted
- false
- createdAt
- userId
-
Maximus Bosco @maximus_bosco
- name
- Meditate daily
- category
- habit
- targetValue
- 21.5
- currentValue
- 18.6
- unit
- minutes/day
- deadline
- 2027-03-26
- isCompleted
- false
- createdAt
- userId
-
Maximus Bosco @maximus_bosco
- name
- Do 100 push-ups
- category
- fitness
- targetValue
- 100
- currentValue
- 55.5
- unit
- reps
- deadline
- 2026-05-05
- isCompleted
- false
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/goals?limit=25"const res = await fetch(
"https://example-data.com/api/v1/goals?limit=25"
);
const { data, meta } = await res.json();import type { Goal, ListEnvelope } from "https://example-data.com/types/goals.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/goals?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Goal>;import requests
res = requests.get(
"https://example-data.com/api/v1/goals",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 121,
"userId": 121,
"name": "Improve flexibility",
"category": "fitness",
"targetValue": 30.6,
"currentValue": 8.1,
"unit": "cm",
"deadline": "2026-04-22",
"isCompleted": false,
"createdAt": "2025-11-28T04:31:52.294Z"
},
{
"id": 122,
"userId": 123,
"name": "Bench press bodyweight",
"category": "fitness",
"targetValue": 104.5,
"currentValue": 98.1,
"unit": "kg",
"deadline": "2026-08-09",
"isCompleted": false,
"createdAt": "2025-07-22T08:57:49.966Z"
},
{
"id": 123,
"userId": 123,
"name": "Gain muscle mass",
"category": "weight",
"targetValue": 81.6,
"currentValue": 29.9,
"unit": "kg",
"deadline": "2026-10-04",
"isCompleted": false,
"createdAt": "2026-01-05T21:06:14.127Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 244,
"totalPages": 11
},
"links": {
"self": "/api/v1/goals?page=6",
"next": "/api/v1/goals?page=7",
"prev": "/api/v1/goals?page=5"
}
}