GET
/api/ti/collection수집 현황
소스별(22종) 오늘/7일/총계/신선도 + 출처 분해. 5초 캐시. 기간(fromMs/toMs/date) 지정 시 소스별 range 카운트 + kpis.collectedInRange 추가(#88). 인증 필요(Bearer 또는 로그인 세션) + OIDC 스코프 ti:read.
Query parameters
fromMsinteger기간 시작(epoch ms, 포함) — #88
toMsinteger기간 끝(epoch ms, 배타) — #88
datestring<date>하루 구간(YYYY-MM-DD, UTC) — fromMs/toMs 없을 때
Responses
200 OK
cURL
curl -X GET https://scti.in-bridge.com/api/ti/collection?fromMs=0&toMs=0&date=2026-07-08JavaScript
const res = await fetch("https://scti.in-bridge.com/api/ti/collection", {
method: "GET"
});
const data = await res.json();