대한민국 표준시 · KST · UTC+9
ONDAMSOFT TIMER PRO
어떤 프로그램·앱·스크립트에서도 정확한 표준시를 조회할 수 있는 무료 공개 API + 실시간 시계
2026년 4월 19일· 일요일
24시간 (24H)24-hour
18:29:24
12시간 (12H)오후
06:29:24
ISO 8601:
2026-04-19T18:29:24+09:00UTC:
2026-04-19 09:29:24 UTCTimezone:
KST (Asia/Seoul, UTC+9)🇰🇷 대한민국 표준시 (KST) API
전체 JSON
GET /api/time ↗요청:
curl https://time.ondamsoft.com/api/time
응답 예시:
{
"locale": "kr",
"iso": "2026-04-19T18:29:24+09:00",
"display": {
"full": "2026년 4월 19일 일요일 오후 6시 29분 24초",
...
},
...
}간결 포맷 (텍스트)
GET /api/time/brief ↗요청:
curl https://time.ondamsoft.com/api/time/brief
응답 예시:
2026-04-19 (일) 18:29:24 KST
ISO 문자열
GET /api/time/iso ↗요청:
curl https://time.ondamsoft.com/api/time/iso
응답 예시:
2026-04-19T18:29:24+09:00
한국어 전체
GET /api/time/korean ↗요청:
curl https://time.ondamsoft.com/api/time/korean
응답 예시:
2026년 4월 19일 일요일 오후 6시 29분 24초
🤖 AI 도구에 자동 연동하기 (Claude Code 등)
아래 한 줄만 실행하면 해당 기기의 모든 AI 세션에서 '몇 시?' 물어볼 때 자동으로 이 서버를 조회합니다. (여러 기기 쓰시면 각 기기에서 한 번씩만 실행)
⚡ 원클릭 설치 (Linux / macOS / Git Bash)
curl -sSL https://time.ondamsoft.com/install.sh | bash
📝 수동 설치 (파일 직접 저장)
mkdir -p ~/.claude curl -sS https://time.ondamsoft.com/setup.md > ~/.claude/CLAUDE.md
🔌 프로그램 · 스크립트 연동 예시
서버 cron 작업, 로그 기록, 앱 내 시간 표시, AI 도구·스크립트 등 어디서든 이 API 하나로 정확한 시각을 얻을 수 있습니다. 인증 불필요, 무료, 실시간.
# Bash · cURL
curl https://time.ondamsoft.com/api/time/brief
# → 2026-04-15 (수) 19:52:40 KST
# Python
import urllib.request, json
data = json.load(urllib.request.urlopen("https://time.ondamsoft.com/api/time"))
print(data["display"]["full"])
# JavaScript (Node / Browser)
fetch("https://time.ondamsoft.com/api/time")
.then(r => r.json())
.then(data => console.log(data.display.full));