← Home

API Documentation

Welcome to "nho hks" Tracker technical guide. Below are the details for integrating our time-tracking API.

API Endpoints

GET /api/timer1

Fetch milestone data from "Break up with lcf" (24/11/2025).

GET /api/timer2

Fetch milestone data from "First time lcf said 'nho hks'" (08/11/2025).

JSON Structure

{
        "label": "Break up with lcf",
        "start_date": "2025-11-24T00:00:00Z",
        "days_elapsed": 150
        }

Security & Limits

Integration Example

Use the following Vanilla JS snippet to get started:

fetch('/api/timer1')
  .then(res => res.json())
  .then(data => {
    console.log("Milestone date:", data.start_date);
  });