goals
goals
Page 8 of 10.
-
Drink 2L water daily
#169
-
Reduce body fat
#170
-
Lose weight
#171
-
Drink 2L water daily
#172
-
Reduce resting heart rate
#173
-
Improve flexibility
#174
-
Reduce resting heart rate
#175
-
Meditate daily
#176
-
Run a marathon
#177
-
Run a marathon
#178
-
Reduce resting heart rate
#179
-
Meditate daily
#180
-
Lose weight
#181
-
Sleep 8 hours nightly
#182
-
Bench press bodyweight
#183
-
Lose weight
#184
-
Run a 5K
#185
-
Improve flexibility
#186
-
Gain muscle mass
#187
-
Sleep 8 hours nightly
#188
-
Drink 2L water daily
#189
-
Do 100 push-ups
#190
-
Do 100 push-ups
#191
-
Reduce body fat
#192
- userId
-
Daisy Kuhic @daisy_kuhic24
- name
- Drink 2L water daily
- category
- nutrition
- targetValue
- 2.6
- currentValue
- 1.5
- unit
- L/day
- deadline
- —
- isCompleted
- false
- createdAt
- userId
-
Daisy Kuhic @daisy_kuhic24
- name
- Reduce body fat
- category
- weight
- targetValue
- 14.1
- currentValue
- 9.4
- unit
- %
- deadline
- 2026-08-01
- isCompleted
- false
- createdAt
- userId
-
Aylin Sanford @aylin.sanford
- name
- Lose weight
- category
- weight
- targetValue
- 64.8
- currentValue
- 53.9
- unit
- kg
- deadline
- 2027-04-03
- isCompleted
- false
- createdAt
- userId
-
Perry Kerluke @perry_kerluke83
- name
- Drink 2L water daily
- category
- nutrition
- targetValue
- 2
- currentValue
- 0
- unit
- L/day
- deadline
- —
- isCompleted
- false
- createdAt
- userId
-
Elvis Littel-Vandervort @elvis.littel-vandervort28
- name
- Reduce resting heart rate
- category
- fitness
- targetValue
- 64.7
- currentValue
- 64.3
- unit
- bpm
- deadline
- 2026-08-06
- isCompleted
- false
- createdAt
- userId
-
Elvis Littel-Vandervort @elvis.littel-vandervort28
- name
- Improve flexibility
- category
- fitness
- targetValue
- 28.4
- currentValue
- 18.3
- unit
- cm
- deadline
- 2026-05-22
- 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": 169,
"userId": 172,
"name": "Drink 2L water daily",
"category": "nutrition",
"targetValue": 2.6,
"currentValue": 1.5,
"unit": "L/day",
"deadline": null,
"isCompleted": false,
"createdAt": "2025-07-20T21:00:50.490Z"
},
{
"id": 170,
"userId": 172,
"name": "Reduce body fat",
"category": "weight",
"targetValue": 14.1,
"currentValue": 9.4,
"unit": "%",
"deadline": "2026-08-01",
"isCompleted": false,
"createdAt": "2025-10-20T22:22:57.257Z"
},
{
"id": 171,
"userId": 173,
"name": "Lose weight",
"category": "weight",
"targetValue": 64.8,
"currentValue": 53.9,
"unit": "kg",
"deadline": "2027-04-03",
"isCompleted": false,
"createdAt": "2026-04-14T01:36:34.487Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 244,
"totalPages": 11
},
"links": {
"self": "/api/v1/goals?page=8",
"next": "/api/v1/goals?page=9",
"prev": "/api/v1/goals?page=7"
}
}