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"
}
Revoke Access Token
You can revoke the access token you requested.
When the access token is revoked, the refresh token corresponding to the token requested is also revoked.
{mallid} : Enter the corresponding shopping mall ID.
{domain} : Enter the domain of the shopping mall.
{Client_id} : Enter the client_id of the app created by the developer center.
{client_secret} : Enter the client_secret of the app created by the developer center.
{token} : Enter the access token to be revoked.
Example (request)
Example (response)
HTTP/1.1 200 OK
Analytics
Adeffect addetails
Endpoints
Adeffect addetails properties
Attribute | Description |
---|---|
ad | Advertising media naver |
keyword | Search keyword onepiece |
visit_ | Visits 200 |
visit_ | Visits (%) 20.2 |
purchase_ | Purchase count 1053 |
purchase_ | Conversion rate 15.5 |
order_ | Sales 360000 |
order_ | Sales per visitor 1800 |
order_ | Sales per buyer 1900 |
List all adeffect addetails cafe24
GET /adeffect/addetails
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value ad: Advertising media DEFAULT ad |
order | Sort order desc: Descending order DEFAULT asc |
Carts action
Endpoints
List all carts action cafe24
GET /carts/action
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value product_name: Product name DEFAULT count |
order | Sort order desc: Descending order DEFAULT desc |
Members sales
Endpoints
List all members sales cafe24
GET /members/sales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
Pages view
Endpoints
List all pages view cafe24
GET /pages/view
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value url: URL DEFAULT count |
order | Sort order desc: Descending order DEFAULT desc |
Products categorydetails
Endpoints
Products categorydetails properties
Attribute | Description |
---|---|
product_ | Product number 98766789 |
product_ | Product name T-shirt |
product_ | Product code P00BDFAW |
category_ | Category name Top |
category_ | Category number 1591 |
sales_ | Number of sales by category 1000 |
sales_ | Number of items sold by category 2000 |
sales_ | Number of sales revenue by category 30000 |
carts_ | Add-to-cart count by category 40000 |
List all products categorydetails cafe24
GET /products/categorydetails
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value product_no: Product number DEFAULT product_name |
order | Sort order desc: Descending order DEFAULT asc |
Products sales
Endpoints
List all products sales cafe24
GET /products/sales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value product_no: Product number DEFAULT order_amount |
order | Sort order desc: Descending order DEFAULT desc |
Products view
Endpoints
Data Product Hits Analysis API cafe24
GET /products/view
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value product_no: Product number DEFAULT count |
order | Sort order desc: Descending order DEFAULT desc |
Sales orderdetails
Endpoints
Sales orderdetails properties
Attribute | Description |
---|---|
order_ | Order date 2024-06-04 |
order_ | Order number 20240201-0000000 |
ad | Advertising media ad |
keyword | Search keyword keyword |
medium | Media medium |
campaign | Campaign campaign |
content | Content content |
payment_ | Payment method card |
order_ | Sales 218200 |
List all sales orderdetails cafe24
GET /sales/orderdetails
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
orderId | Order number 20240201-0000000 DEFAULT 20240602-0017928 |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value order_id: Order number DEFAULT order_id |
order | Sort order desc: Descending order DEFAULT asc |
Sales paymethods
Endpoints
List all sales paymethods cafe24
GET /sales/paymethods
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value payment_method: Payment method DEFAULT order_amount |
order | Sort order desc: Descending order DEFAULT desc |
Sales pervisitors
Endpoints
List all sales pervisitors cafe24
GET /sales/pervisitors
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
Sales times
Endpoints
List all sales times cafe24
GET /sales/times
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value hour: Time DEFAULT hour |
order | Sort order desc: Descending order DEFAULT asc |
Visitors dailyactive
Endpoints
List all visitors dailyactive cafe24
GET /visitors/dailyactive
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value date: Date DEFAULT date |
order | Sort order desc: Descending order DEFAULT asc |
Visitors pageview
Endpoints
List all visitors pageview cafe24
GET /visitors/pageview
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
format_ | Data type day: Daily DEFAULT day |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value date: Date DEFAULT date |
order | Sort order desc: Descending order DEFAULT asc |
Visitors unique
Endpoints
List all visitors unique cafe24
GET /visitors/unique
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value date: Date DEFAULT date |
order | Sort order desc: Descending order DEFAULT asc |
Visitors view
Endpoints
List all visitors view cafe24
GET /visitors/view
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
format_ | Data type day: Daily DEFAULT day |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value date: Date DEFAULT date |
order | Sort order desc: Descending order DEFAULT asc |
Visitpaths adkeywordsales
Endpoints
List all visitpaths adkeywordsales cafe24
GET /visitpaths/adkeywordsales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value keyword: Search keyword DEFAULT ad |
order | Sort order desc: Descending order DEFAULT asc |
Visitpaths ads
Endpoints
List all visitpaths ads cafe24
GET /visitpaths/ads
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value ad: Advertising media name DEFAULT visit_count |
order | Sort order desc: Descending order DEFAULT desc |
Visitpaths adsales
Endpoints
List all visitpaths adsales cafe24
GET /visitpaths/adsales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value ad: Advertising media name DEFAULT order_amount |
order | Sort order desc: Descending order DEFAULT desc |
Visitpaths domains
Endpoints
List all visitpaths domains cafe24
GET /visitpaths/domains
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value domain: Domain DEFAULT visit_count |
order | Sort order desc: Descending order DEFAULT desc |
Visitpaths domainsales
Endpoints
List all visitpaths domainsales cafe24
GET /visitpaths/domainsales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value domain: Domain DEFAULT order_amount |
order | Sort order desc: Descending order DEFAULT desc |
Visitpaths keyworddetails
Endpoints
Visitpaths keyworddetails properties
Attribute | Description |
---|---|
keyword | Search keyword onepiece |
engine | Search engine Naver |
visit_ | Visits 200 |
purchase_ | Purchase count 1053 |
purchase_ | Conversion rate 15.5 |
order_ | Sales 360000 |
order_ | Sales per visitor 1800 |
order_ | Sales per buyer 1900 |
List all visitpaths keyworddetails cafe24
GET /visitpaths/keyworddetails
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value keyword: Search keyword DEFAULT keyword |
order | Sort order desc: Descending order DEFAULT asc |
Visitpaths keywords
Endpoints
List all visitpaths keywords cafe24
GET /visitpaths/keywords
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value keyword: Search keyword DEFAULT visit_count |
order | Sort order desc: Descending order DEFAULT desc |
Visitpaths keywordsales
Endpoints
List all visitpaths keywordsales cafe24
GET /visitpaths/keywordsales
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value keyword: Search keyword DEFAULT order_amount |
order | Sort order desc: Descending order DEFAULT desc |
Visitpaths urls
Endpoints
List all visitpaths urls cafe24
GET /visitpaths/urls
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_analytics |
Request Limit | 0 |
Request
Parameter | Description |
---|---|
mall_ Required | Store ID Sample ID |
shop_ | Store number Store number DEFAULT 1 |
start_ Required | Start date 2023-01-01 |
end_ Required | End date 2023-02-01 |
device_ | Device type pc: PC |
limit | Number of responses Minimum: 50 DEFAULT 100 |
offset | Offset DEFAULT 0 |
sort | Sort value url: URL DEFAULT visit_count |
order | Sort order desc: Descending order DEFAULT desc |