example-data.com

goals

goals

Page 6 of 10.

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