example-data.com

goals

goals

Page 8 of 10.

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