goals
goals
Page 4 of 10.
-
Drink 2L water daily
#73
-
Eat 150g protein daily
#74
-
Gain muscle mass
#75
-
Bench press bodyweight
#76
-
Reduce body fat
#77
-
Work out 4x per week
#78
-
Walk 10000 steps daily
#79
-
Run a marathon
#80
-
Reduce resting heart rate
#81
-
Run a marathon
#82
-
Work out 4x per week
#83
-
Drink 2L water daily
#84
-
Reduce resting heart rate
#85
-
Eat 150g protein daily
#86
-
Eat 150g protein daily
#87
-
Meditate daily
#88
-
Gain muscle mass
#89
-
Walk 10000 steps daily
#90
-
Reduce body fat
#91
-
Lose weight
#92
-
Bench press bodyweight
#93
-
Sleep 8 hours nightly
#94
-
Work out 4x per week
#95
-
Run a marathon
#96
- userId
-
Ike Breitenberg @ike.breitenberg
- name
- Drink 2L water daily
- category
- nutrition
- targetValue
- 2.6
- currentValue
- 1.6
- unit
- L/day
- deadline
- 2026-12-10
- isCompleted
- false
- createdAt
- userId
-
Ryan Conroy @ryan_conroy
- name
- Eat 150g protein daily
- category
- nutrition
- targetValue
- 196.5
- currentValue
- 168.9
- unit
- g/day
- deadline
- 2026-06-09
- isCompleted
- false
- createdAt
- userId
-
Candace Mueller @candace.mueller
- name
- Gain muscle mass
- category
- weight
- targetValue
- 99
- currentValue
- 45.5
- unit
- kg
- deadline
- 2026-07-01
- isCompleted
- false
- createdAt
- userId
-
Jesse Kiehn @jesse_kiehn92
- name
- Bench press bodyweight
- category
- fitness
- targetValue
- 75.7
- currentValue
- 58.5
- unit
- kg
- deadline
- 2026-06-06
- isCompleted
- false
- createdAt
- userId
-
Jesse Kiehn @jesse_kiehn92
- name
- Reduce body fat
- category
- weight
- targetValue
- 15.6
- currentValue
- 0.4
- unit
- %
- deadline
- 2026-08-08
- isCompleted
- false
- createdAt
- 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
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": 73,
"userId": 72,
"name": "Drink 2L water daily",
"category": "nutrition",
"targetValue": 2.6,
"currentValue": 1.6,
"unit": "L/day",
"deadline": "2026-12-10",
"isCompleted": false,
"createdAt": "2025-12-17T20:27:21.473Z"
},
{
"id": 74,
"userId": 73,
"name": "Eat 150g protein daily",
"category": "nutrition",
"targetValue": 196.5,
"currentValue": 168.9,
"unit": "g/day",
"deadline": "2026-06-09",
"isCompleted": false,
"createdAt": "2025-10-12T14:45:48.689Z"
},
{
"id": 75,
"userId": 75,
"name": "Gain muscle mass",
"category": "weight",
"targetValue": 99,
"currentValue": 45.5,
"unit": "kg",
"deadline": "2026-07-01",
"isCompleted": false,
"createdAt": "2026-03-04T16:26:30.515Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 244,
"totalPages": 11
},
"links": {
"self": "/api/v1/goals?page=4",
"next": "/api/v1/goals?page=5",
"prev": "/api/v1/goals?page=3"
}
}