example-data.com
Menu
Browse docs and collections

Overview

goals / #24

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/goals/24" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/goals/24"
);
const goal = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/goals.d.ts https://example-data.com/types/goals.d.ts
import type { Goal } from "./types/goals";

const res = await fetch(
  "https://example-data.com/api/v1/goals/24"
);
const goal = (await res.json()) as Goal;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/goals/24"
)
goal = res.json()

Response

{
  "id": 24,
  "userId": 25,
  "name": "Run a marathon",
  "category": "fitness",
  "targetValue": 42,
  "currentValue": 35.2,
  "unit": "km",
  "deadline": null,
  "isCompleted": false,
  "createdAt": "2025-09-15T00:58:51.939Z"
}