non-print
API Index
Introduction
Cafe24 Analytics API (Beta)
To develop a data provision service, you can use Cafe24 Analytics API to retrieve online customer data. Please note that prior approval from Cafe24 is required to access this API.
Please use any information obtained through this API only for the approved channels, media platforms, or purposes. Any other use is strictly prohibited.
Data before 2023 is based on data from EC Admin > Statistics > Access Statistics. Data after 2023 is based on data from EC Admin > Statistics > Cafe24 Analytics.
Cafe24 Analytics API provides an OAuth 2.0-based authentication system, standard HTTP request methods, predictable endpoint URLs, and HTTP status code-based error messages..
Request/Response Format
- API requests and responses support JSON format.
To protect personal information, Cafe24 Analytics API only supports HTTPS protocol.
Date attribute format is ISO_8601
E.g. YYYY-MM-DDTHH:MM:SS+09:00
Request sample (GET)
Sample result
{
"resource": {
"key": "value",
"key": "value"
}
}
Failure response sample
{
"error": {
"code": "error code",
"message": "error message",
"more_info": {
}
}
}
Cafe24 Analytics API Intro
Cafe24 Analytics API
Cafe24 Analytics API is designed to retrieve customer behavior data for online stores. It can retrieve nearly all customer behavior data and can only be accessed by users authenticated through a separate OAuth 2.0 authentication process.
Example
Page view : https://ca-api.cafe24data.com/visitors/pageview?mall_id=몰아이디&shop_no=1&start_date=2023-02-01&end_date=2023-02-10
Visitor : https://ca-api.cafe24data.com/visitors/view?mall_id=몰아이디&shop_no=1&start_date=2023-02-01&end_date=2023-02-10
API Status Code
Code | Case | Troubleshooting |
---|---|---|
200 | GET is successful | |
401 | 1) API was called without an access token 2) Access token is invalid 3) Access Token is expired 4) Client is unknown | Check if the access token was obtained through a valid issuance process. |
401 | "client_id" is not entered. | Check if "client_id" is valid. |
403 | Access token is valid, but the user does not have the required scope permissions. | Check the API scopes or store settings to ensure that you have the necessary permissions to call this API. |
403 | Not a HTTPS protocol | Check if you used HTTPS method to call this API. |
404 | 1) Wrong API URL was called 2) Resource cannot be found 3) {#id} is missing | Refer to the API documentation to make sure that the correct endpoint URL has been used for the API call. |
422 | Retrieve or Process request has different values than the specifications 1) Required parameters are missing 2) Entered parameters are not the same as the ones in the specifications | Refer to the API documentation to make sure that all required parameters are included and that the entered values are valid according to the specifications. |
429 | Client's API requests have consumed all tokens in the bucket. | Wait a moment and try again, make sure not to exceed the maximum allowed number of API requests. |
500 | Internal server errors, unknown errors | A temporary error has occurred, try again later. |
503 | Server is down | Contact us through Cafe24 Developers. |
503 | Server is down, API cannot be used | Contact us through Cafe24 Developers. |
504 | Request timeout | A temporary error has occurred and response is being delayed, try again later. |
1. Adding search parameters
You can add parameters to an endpoint to search with multiple conditions.
If you want to search multiple conditions, use "&" as a delimiter.
검색조건 추가
E.g. Retrieve the page view count for a specific store within a specified time range.
GET https://ca-api.cafe24data.com/visitors/pageview?mall_id=nelly&start_date=2023-01-01&end_date=2023-02-01
E.g. Retrieve the visitor count for a specific store by domain within a specified time range.
GET https://ca-api.cafe24data.com/visitpaths/domains?mall_id=nelly&start_date=2023-01-01&end_date=2023-02-01
E.g. Retrieve the sales amount and quantity for a specific store by product within a specified time range.
GET https://ca-api.cafe24data.com/products/sales?mall_id=nelly&start_date=2023-01-01&end_date=2023-02-01
E.g. Retrieve the count of customers who placed an order, count of orders, and sales amount by the hour for a specific store within a specified time range.
GET https://ca-api.cafe24data.com/sales/times?mall_id=nelly&start_date=2023-01-01&end_date=2023-02-01
2. Pagination
By default, the API retrieves 100 search results.
If there are more results to be retrieved, you can use the "offset" parameter to retrieve an additional 100 results per request.
Pagination
E.g. Retrieve search result items (1-100)
GET https://ca-api.cafe24data.com/visitors/pageview?mall_id=nelly&start_date=2023-01-01&end_date=2023-02-01
E.g. Retrieve search result items (101-200)
GET hhttps://ca-api.cafe24data.com/visitors/pageview?mall_id=nelly&start_date=2023-01-01&end_date=2023-02-01&offset=100
E.g. Retrieve search result items (201-300)
GET hhttps://ca-api.cafe24data.com/visitors/pageview?mall_id=nelly&start_date=2023-01-01&end_date=2023-02-01&offset=200
E.g. Retrieve search result items (301-400)
GET hhttps://ca-api.cafe24data.com/visitors/pageview?mall_id=nelly&start_date=2023-01-01&end_date=2023-02-01&offset=300
API Limit
CA API uses "Token Bucket" algorithm.
Tokens are added to the bucket at a "fixed rate," and each request for a resource consumes one token from the bucket. If the bucket is empty, request will be limited. One token will be added to the bucket every two seconds.
- If an app makes calls API at a rate of once every two seconds, it can continue to use the API without any limitations.
- If the number of calls made "exceeds the call limit" in one second, 429 error (Too Many Requests) will be returned.
To avoid 429 errors, you can check how many tokens are left in the bucket by looking at the "x-ratelimit-remaining" field in the Response Header under Header.
Response Header
> X-RateLimit-Remaining: 9
> X-RateLimit-Requested-Tokens: 1
> X-RateLimit-Burst-Capacity: 10
> X-RateLimit-Replenish-Rate: 2
Authentication
Access token can be used as a token issued by the shopping mall (EC Admin API).
Get Authentication Code
The code used to obtain a token is not reusable, and expires one minute after the issuance.
{mallid}: Enter store ID.
{client_id}: Enter "client_id" generated for your app on Cafe24 Developers.
{state}: To prevent tampering, enter a value that will be returned along with the code.
{redirect_uri}: Enter Redirect URL generated for your app on Cafe24 Developers.
{scope}: Specify the permissions for the resource servers that you want to access with the access token.
To obtain an access token, you must request an access code first. The access code is for client-side web applications. Request the access cod on a web browser not through cURL.
Request Copy
GET 'https://{mallid}.cafe24api.com/api/v2/oauth/authorize?response_type=code&client_id={client_id}&state={state}&redirect_uri={redirect_uri}&scope={scope}'
Sample result
HTTP/1.1 302 Found
Location: {redirect_uri}?code={authorize_code}&state={state}
Get Access Token
With the access code, you can get a user token (Access token, Refresh token) to call the API.
{mallid}: Enter store ID.
{client_id}: Enter client_id generated for your app on Cafe24 Developers.
{client_secret}: Enter "client_secret" generated for your app on Cafe24 Developers.
{code}: Enter the obtained code.
{redirect_uri}: Enter "Redirect URL" generated for your app on Cafe24 Developers.
access_token: This token is used by the client to access the resource servers.
refresh_token: This token is used to obtain a new access token after the previous one has expired.
Request sample
Sample result
HTTP/1.1 200 OK
{
"access_token": "0iqR5nM5EJIq..........",
"expires_at": "2021-03-01T14:00:00.000",
"refresh_token": "JeTJ7XpnFC0P..........",
"refresh_token_expires_at": "2021-03-15T12:00:00.000",
"client_id": "BrIfqEKoPxeE..........",
"mall_id": "yourmall",
"user_id": "test",
"scopes": [
"mall.analytics",
"...etc...",
],
"issued_at": "2021-03-01T12:00:00.000"
}
Get Access Token using refresh token
Access token expires two hours after the issuance. Once expired, you need to obtain a new access token using the refresh token to continue accessing the resource servers. If you have obtained an access token, you can use "refresh_token" to renew it.
Refresh token is valid for 2 weeks. If you make a request before the refresh token is expired, both renewed access token and new refresh token will be returned. The existing refresh token will no longer be valid.
With the access code, you can get a user token (Access token, Refresh token) to call the API.
{mallid}: Enter store ID.
{domain}: Enter store domain.
{client_id}: Enter "client_id" generated for your app on Cafe24 Developers.
{client_secret}: Enter "client_secret" generated for your app on Cafe24 Developers.
{refresh_token}: Enter token "refresh_token" obtained while getting an access token.
access_token: This token is used by the client to access the resource servers.
refresh_token: This token is used to obtain a new access token after the previous one has expired.
Request sample
Sample result
HTTP/1.1 200 OK
{
"access_token": "21EZes0dGSfN..........",
"expires_at": "2021-03-01T15:50:00.000",
"refresh_token": "xLlhWztQHBik............",
"refresh_token_expires_at": "2021-03-15T13:50:00.000",
"client_id": "BrIfqEKoPxeE..........",
"mall_id": "yourmall",
"user_id": "test",
"scopes": [
"mall.analytics",
"...etc...",
],
"issued_at": "2021-03-01T13:50:00.000"
}
Analytics
Adeffect addetails
Endpoints
List all adeffect addetails
GET /adeffect/addetails
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 ad : 광고매체 DEFAULT ad |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Carts action
Endpoints
List all carts action
GET /carts/action
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 product_name : 상품명 DEFAULT count |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Members sales
Endpoints
List all members sales
GET /members/sales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
Pages view
Endpoints
List all pages view
GET /pages/view
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 url : url DEFAULT count |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Products categorydetails
Endpoints
Products categorydetails properties
Attribute | Description |
---|---|
product_ | 상품번호 98766789 |
product_ | 상품명 티셔츠 |
product_ | 상품코드 P00BDFAW |
category_ | 카테고리명 상의 |
category_ | 카테고리번호 1591 |
sales_ | 카테고리별 판매건수 1000 |
sales_ | 카테고리별 판매물품수 2000 |
sales_ | 카테고리별 상품판매금액 30000 |
carts_ | 카테고리별 담긴수 40000 |
List all products categorydetails
GET /products/categorydetails
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 product_no : 상품번호 DEFAULT product_name |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Products sales
Endpoints
List all products sales
GET /products/sales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 product_no : 상품번호 DEFAULT order_amount |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Products view
Endpoints
List all products view
GET /products/view
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 product_no : 상품번호 DEFAULT count |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Sales paymethods
Endpoints
List all sales paymethods
GET /sales/paymethods
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 payment_method : 결제수단 DEFAULT order_amount |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Sales pervisitors
Endpoints
List all sales pervisitors
GET /sales/pervisitors
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
Sales times
Endpoints
List all sales times
GET /sales/times
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 hour : 시간대 DEFAULT hour |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Visitors dailyactive
Endpoints
List all visitors dailyactive
GET /visitors/dailyactive
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 date : 날짜 DEFAULT date |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Visitors pageview
Endpoints
List all visitors pageview
GET /visitors/pageview
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
format_ | 데이터 형식 day: 일별 DEFAULT day |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 date : 날짜 DEFAULT date |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Visitors unique
Endpoints
List all visitors unique
GET /visitors/unique
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 date : 날짜 DEFAULT date |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Visitors view
Endpoints
List all visitors view
GET /visitors/view
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
format_ | 데이터 형식 day: 일별 DEFAULT day |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 date : 날짜 DEFAULT date |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Visitpaths adkeywordsales
Endpoints
List all visitpaths adkeywordsales
GET /visitpaths/adkeywordsales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 keyword : 검색어 DEFAULT ad |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Visitpaths ads
Endpoints
List all visitpaths ads
GET /visitpaths/ads
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 ad : 광고매체명 DEFAULT visit_count |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Visitpaths adsales
Endpoints
List all visitpaths adsales
GET /visitpaths/adsales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 ad : 광고매체명 DEFAULT order_amount |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Visitpaths domains
Endpoints
List all visitpaths domains
GET /visitpaths/domains
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 domain : 도메인 DEFAULT visit_count |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Visitpaths domainsales
Endpoints
List all visitpaths domainsales
GET /visitpaths/domainsales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 domain : 도메인 DEFAULT order_amount |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Visitpaths keyworddetails
Endpoints
List all visitpaths keyworddetails
GET /visitpaths/keyworddetails
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 keyword : 검색어 DEFAULT keyword |
order | 정렬 순서 desc: 내림차순 DEFAULT asc |
Visitpaths keywords
Endpoints
List all visitpaths keywords
GET /visitpaths/keywords
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 keyword : 검색어 DEFAULT visit_count |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Visitpaths keywordsales
Endpoints
List all visitpaths keywordsales
GET /visitpaths/keywordsales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 keyword : 검색어 DEFAULT order_amount |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |
Visitpaths urls
Endpoints
List all visitpaths urls
GET /visitpaths/urls
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | 몰 아이디 샘플 아이디 |
shop_ | 샵 번호 샵 번호 DEFAULT 1 |
start_ Required | 시작일 2023-01-01 |
end_ Required | 종료일 2023-02-01 |
device_ | 디바이스 타입 pc: pc |
limit | 응답 갯수 최소: 50 DEFAULT 100 |
offset | 오프셋 DEFAULT 0 |
sort | 정렬 값 url : url DEFAULT visit_count |
order | 정렬 순서 desc: 내림차순 DEFAULT desc |