Analysis

실시간 검색어 반환

GET https://soojle.io/get_search_realtime

실시간 검색어 순위를 반환한다.

1. 성공
{
    result = "success",
    search_realtime = <list>
        [
            <list>
            [
                "검색어", "빈도수"
            ]
        ]
}

시간별 사용자 접근 log 반환

GET https://soojle.io/get_log_date/<int:months>/<int:days>/<int:hours>/<int:limit>

각 Path Parameter에는 limit을 동반하여 한개만 사용 가능합니다. 예시) get_log_date/4/0/0/100 = 최근 4개월 간의 기록을 100개 가져온다. 예시) get_log_date/0/3/0/100 = 최근 3일 간의 기록을 100개 가져온다.

Path Parameters

Name
Type
Description

months

string

달 (최대 6개월)

days

string

일 (최대 7일)

hours

string

시간 (최대 24시간)

limit

string

최대 X개 반환

Headers

Name
Type
Description

Authorization

string

"Bearer " + <Token>

특정 사용자 Log 반환

GET https://soojle.io/get_log_user/<string:user_id>/<int:limit>

Path Parameters

Name
Type
Description

user_id

string

사용자 id

limit

string

최대 X개 반환

Headers

Name
Type
Description

Authorization

string

"Bearer " + <token>

특정 사용자 + 시간별 Log 반환

GET https://soojle.io/get_log_user_date/<string:user_id>/<int:months>/<int:days>/<int:hours>/<int:limit>

Path Parameters

Name
Type
Description

user_id

string

사용자 id

months

string

달 (최대 6개월)

days

string

일 (최대 7일)

hours

string

시간 (최대 24시간)

limit

string

최대 X개 반환

Headers

Name
Type
Description

Authorization

string

"Bearer " + <token>

유사한 단어 추출

POST https://soojle.io/get_similarity_words

연관 검색어 용도

Request Body

Name
Type
Description

search

string

검색어

통계 통합 반환

GET https://soojle.io/get_analysis

날짜별 통계 반환(X일 전 버전)

GET https://soojle.io/get_everyday_analysis_days_ago/<int:days>

Path Parameters

Name
Type
Description

days

number

몇일 전 날짜의 통계를 입력

날짜별 통계 반환(특정 날짜 반환형)

GET https://soojle.io/get_everyday_analysis_specific_days/<int:year>/<int:month>/<int:day>

Path Parameters

Name
Type
Description

year

number

month

number

day

number

디바이스 입력

GET https://soojle.io/insert_device/<string:device>

Path Parameters

Name
Type
Description

device

number

device_pc device_mobile device_tablet 이 셋중 하나를 입력해야함.

디바이스 통계 반환

GET https://soojle.io/get_device

Last updated

Was this helpful?