example-data.com

goals

goals

Page 9 of 10.

userId
Oliver Mitchell @oliver_mitchell50
name
Bench press bodyweight
category
fitness
targetValue
102.5
currentValue
94.8
unit
kg
deadline
2027-04-26
isCompleted
false
createdAt
userId
Maryam Kunze @maryam_kunze
name
Run a 5K
category
fitness
targetValue
5
currentValue
0.4
unit
km
deadline
2026-10-06
isCompleted
false
createdAt
userId
Tabitha Ruecker @tabitha.ruecker
name
Bench press bodyweight
category
fitness
targetValue
79.6
currentValue
75.3
unit
kg
deadline
isCompleted
false
createdAt
userId
Tabitha Ruecker @tabitha.ruecker
name
Do 100 push-ups
category
fitness
targetValue
100
currentValue
26.9
unit
reps
deadline
2026-09-21
isCompleted
false
createdAt
userId
Frederic Armstrong @frederic_armstrong96
name
Reduce body fat
category
weight
targetValue
18.3
currentValue
5.3
unit
%
deadline
2026-12-19
isCompleted
false
createdAt
userId
Consuelo Borer @consuelo.borer
name
Run a marathon
category
fitness
targetValue
42
currentValue
40.7
unit
km
deadline
2027-02-17
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": 193,
      "userId": 194,
      "name": "Bench press bodyweight",
      "category": "fitness",
      "targetValue": 102.5,
      "currentValue": 94.8,
      "unit": "kg",
      "deadline": "2027-04-26",
      "isCompleted": false,
      "createdAt": "2025-12-15T20:25:23.463Z"
    },
    {
      "id": 194,
      "userId": 195,
      "name": "Run a 5K",
      "category": "fitness",
      "targetValue": 5,
      "currentValue": 0.4,
      "unit": "km",
      "deadline": "2026-10-06",
      "isCompleted": false,
      "createdAt": "2025-09-18T04:39:30.011Z"
    },
    {
      "id": 195,
      "userId": 197,
      "name": "Bench press bodyweight",
      "category": "fitness",
      "targetValue": 79.6,
      "currentValue": 75.3,
      "unit": "kg",
      "deadline": null,
      "isCompleted": false,
      "createdAt": "2025-08-09T14:01:59.429Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 244,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/goals?page=9",
    "next": "/api/v1/goals?page=10",
    "prev": "/api/v1/goals?page=8"
  }
}
Draftbit