example-data.com

goals

goals

Page 5 of 10.

userId
Tabitha McKenzie @tabitha_mckenzie
name
Reduce body fat
category
weight
targetValue
15.3
currentValue
11.1
unit
%
deadline
2026-11-23
isCompleted
false
createdAt
userId
Charity Crona @charity.crona12
name
Work out 4x per week
category
habit
targetValue
4.5
currentValue
4.5
unit
sessions/week
deadline
2026-08-02
isCompleted
true
createdAt
userId
Lazaro Rath @lazaro.rath42
name
Run a 5K
category
fitness
targetValue
5
currentValue
5
unit
km
deadline
2026-12-06
isCompleted
true
createdAt
userId
Rosina Larkin @rosina.larkin75
name
Bench press bodyweight
category
fitness
targetValue
105.9
currentValue
64.9
unit
kg
deadline
isCompleted
false
createdAt
userId
Rosina Larkin @rosina.larkin75
name
Walk 10000 steps daily
category
habit
targetValue
10000
currentValue
3801.2
unit
steps/day
deadline
2026-05-31
isCompleted
false
createdAt
userId
Jermain Kshlerin @jermain_kshlerin51
name
Reduce resting heart rate
category
fitness
targetValue
61.2
currentValue
59.2
unit
bpm
deadline
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": 97,
      "userId": 98,
      "name": "Reduce body fat",
      "category": "weight",
      "targetValue": 15.3,
      "currentValue": 11.1,
      "unit": "%",
      "deadline": "2026-11-23",
      "isCompleted": false,
      "createdAt": "2026-03-23T20:33:05.357Z"
    },
    {
      "id": 98,
      "userId": 100,
      "name": "Work out 4x per week",
      "category": "habit",
      "targetValue": 4.5,
      "currentValue": 4.5,
      "unit": "sessions/week",
      "deadline": "2026-08-02",
      "isCompleted": true,
      "createdAt": "2026-01-25T10:09:01.345Z"
    },
    {
      "id": 99,
      "userId": 102,
      "name": "Run a 5K",
      "category": "fitness",
      "targetValue": 5,
      "currentValue": 5,
      "unit": "km",
      "deadline": "2026-12-06",
      "isCompleted": true,
      "createdAt": "2025-06-25T08:50:47.159Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 244,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/goals?page=5",
    "next": "/api/v1/goals?page=6",
    "prev": "/api/v1/goals?page=4"
  }
}
Draftbit