example-data.com

goals

goals

Page 4 of 10.

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"
  }
}
Draftbit