14.2.7
조회 API
GET

/api/stats/protection

시드 차단 통계입니다. 차단된 시드 수, 차단 횟수, 차단된 조회 시도 수와 최근에 끝난 차단 10건을 반환합니다. 진행 중인 차단의 시드는 포함되지 않습니다.

인증 없음cache 60 ssince v1
응답
상태본문언제
200{"seeds":13,"windows":165,"viewAttemptsBlocked":94,"recent":[{"seed":143600194,"at":"2026-09-16T05:51:19Z","endedAt":"2026-09-16T05:56:19Z","viewAttempts":0}]}seeds와 windows는 누적값이고, viewAttemptsBlocked는 차단 중에 거절된 지도 조회 수입니다. recent는 끝난 차단만 최신순으로 최대 10건입니다.
응답 필드
필드타입null설명
seedsinteger아님지금까지 차단된 적 있는 시드 수(중복 없음).
windowsinteger아님지금까지 차단된 횟수.
viewAttemptsBlockedinteger아님차단 중에 거절된 지도 조회 수.
recentarray아님끝난 차단 최신순 최대 10건. 항목은 {seed, at, endedAt, viewAttempts} 입니다.
recent[].seedinteger아님차단됐던 시드.
recent[].atstring아님차단이 시작된 시각. ISO-8601 UTC.
recent[].endedAtstring아님차단이 끝난 시각.
recent[].viewAttemptsinteger아님그 차단 동안 거절된 조회 수.
예시
curl https://slmaps.com/api/stats/protection -H "User-Agent: MyServer/1.0"
응답 예시
{
  "seeds": 13,
  "windows": 165,
  "viewAttemptsBlocked": 94,
  "recent": [
    {
      "seed": 143600194,
      "at": "2026-09-16T05:51:19Z",
      "endedAt": "2026-09-16T05:56:19Z",
      "viewAttempts": 0
    }
  ]
}

뷰어 동작

진행 중인 차단의 시드 값은 이 응답을 포함해 어디에도 공개되지 않습니다. 차단이 끝난 뒤에만 목록에 표시됩니다.

SLMAPS는 SCP: Secret Laboratory의 시드 지도 뷰어입니다. 이 문서는 slmaps.com의 공개 API를 설명합니다.slmaps.com ·