Online Publishing Console

Manual Update Publisher

Use this page to test the online app before you connect the offline timing system.

API wiring

Push from the Offline App

Send JSON to the online app with the configured API key. This lets your local timing system stay offline or local-only while the online server hosts the monitor data.

POST https://idh-race.arahin.com//api/ingest
X-Api-Key: f242aupmuPhEJjX
Monitor URL: https://idh-race.arahin.com//

{
    "event": {
        "title": "Indonesia Downhill Cup",
        "location": "Bandung",
        "status": "Live",
        "started_at": "2026-05-14T09:00:00Z"
    },
    "entries": [
        {
            "class_name": "Elite Men",
            "bib": "101",
            "rider_name": "Ari Setiawan",
            "team": "Gravity Squad",
            "status": "finished",
            "rank": 1,
            "split1_ms": 25123,
            "split2_ms": 48750,
            "finish_ms": 73111,
            "message": "New fastest run"
        }
    ],
    "timeline": [
        {
            "headline": "Ari Setiawan goes fastest",
            "detail": "Takes provisional P1 with a clean lower sector.",
            "class_name": "Elite Men",
            "bib": "101",
            "rider_name": "Ari Setiawan"
        }
    ]
}