You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: specs/analytics/paths/click/getAverageClickPosition.yml
+4-1
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,12 @@ get:
8
8
description: |
9
9
Retrieves the average click position of your search results, including a daily breakdown.
10
10
11
-
The average click position is the average of all clicked search results' positions.
11
+
The average click position is the average of all clicked search result positions.
12
12
For example, if users only ever click on the first result for any search, the average click position is 1.
13
13
By default, the analyzed period includes the last eight days including the current day.
14
+
15
+
An average of `null` when `clickAnalytics` is enabled means Algolia didn't receive any [click events](https://www.algolia.com/doc/guides/sending-events/getting-started/) for the queries.
16
+
The average is `null` until Algolia receives at least one click event.
Copy file name to clipboardexpand all lines: specs/analytics/paths/click/getClickPositions.yml
+2
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ get:
9
9
Retrieves the positions in the search results and their associated number of clicks.
10
10
11
11
This lets you check how many clicks the first, second, or tenth search results receive.
12
+
13
+
An average of `0` when `clickAnalytics` is enabled means Algolia didn't receive any [click events](https://www.algolia.com/doc/guides/sending-events/getting-started/) for the queries.
Copy file name to clipboardexpand all lines: specs/analytics/paths/click/getPurchaseRate.yml
+10-1
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,18 @@ get:
6
6
- analytics
7
7
summary: Retrieve purchase rate
8
8
description: |
9
-
Retrieves the purchase rate for all of your searches with at least one purchase event, including a daily breakdown.
9
+
Retrieves the purchase rate for all your searches with at least one purchase event, including a daily breakdown.
10
10
11
11
By default, the analyzed period includes the last eight days including the current day.
12
+
13
+
The rate is the number of purchase conversion events divided by the number of tracked searches.
14
+
A search is tracked if it returns a query ID (`clickAnalytics` is `true`).
15
+
This differs from the response's `count`, which shows the overall number of searches, including those where `clickAnalytics` is `false`.
16
+
17
+
**There's a difference between a 0 and null purchase rate when `clickAnalytics` is enabled:**
18
+
19
+
- **Null** means there were no queries: since Algolia didn't receive any events, the purchase rate is null.
20
+
- **0** mean there _were_ queries but no [purchase conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
Copy file name to clipboardexpand all lines: specs/analytics/paths/search/getTopHits.yml
+24-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,30 @@ get:
5
5
x-acl:
6
6
- analytics
7
7
summary: Retrieve top search results
8
-
description: Retrieves the object IDs of the most frequent search results.
8
+
description: |
9
+
Retrieves the object IDs of the 1,000 most frequent search results.
10
+
11
+
If you set the `clickAnalytics` query parameter to true, the response also includes:
12
+
13
+
- Tracked searches count. Tracked searches are Search API requests with the `clickAnalytics` parameter set to `true`. This differs from the response's `count`, which shows the overall number of searches, including those where `clickAnalytics` is `false`.
14
+
- Click count
15
+
- Click-through rate (CTR)
16
+
- Conversion count
17
+
- Conversion rate (CR)
18
+
- Average click position
19
+
20
+
If you set the `revenueAnalytics` parameter to `true`, the response also includes:
21
+
22
+
- Add-to-cart count
23
+
- Add-to-cart rate (ATCR)
24
+
- Purchase count
25
+
- Purchase rate
26
+
- Revenue details for each currency
27
+
28
+
**There's a difference between 0% rates and null rates:**
29
+
30
+
- **Null** means there were no queries: since Algolia didn't receive any events, the rates (CTR, CR, ATCR, purchase rate) are null.
31
+
- **0% rates** mean there _were_ queries but no [click or conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
Copy file name to clipboardexpand all lines: specs/analytics/paths/search/getTopSearches.yml
+24-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,30 @@ get:
5
5
x-acl:
6
6
- analytics
7
7
summary: Retrieve top searches
8
-
description: Returns the most popular search terms.
8
+
description: |
9
+
Returns the most popular searches. For each search, it also includes the average number of hits.
10
+
11
+
If you set the `clickAnalytics` query parameter to `true`, the response also includes
12
+
13
+
- Tracked searches count. Tracked searches are Search API requests with the `clickAnalytics` parameter set to `true`. This differs from the response's `count`, which shows the overall number of searches, including those where `clickAnalytics` is `false`.
14
+
- Click count
15
+
- Click-through rate (CTR)
16
+
- Conversion count
17
+
- Conversion rate (CR)
18
+
- Average click position
19
+
20
+
If you set the `revenueAnalytics` query parameter to `true`, the response also includes:
21
+
22
+
- Add-to-cart count
23
+
- Add-to-cart rate (ATCR)
24
+
- Purchase count
25
+
- Purchase rate
26
+
- Revenue details for each currency
27
+
28
+
**There's a difference between 0% rates and null rates:**
29
+
30
+
- **Null** means there were no queries: since Algolia didn't receive any events, the rates (CTR, CR, ATCR, purchase rate) are null.
31
+
- **0% rates** mean there _were_ queries but no [click or conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
Copy file name to clipboardexpand all lines: specs/analytics/paths/search/getUsersCount.yml
+5-3
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,12 @@ get:
8
8
description: |
9
9
Retrieves the number of unique users within a time range, including a daily breakdown.
10
10
11
-
Since this endpoint returns the number of unique users, the sum of the daily values might be different from the total number.
11
+
Since it returns the number of unique users, the sum of the daily values might be different from the total number.
12
12
13
-
By default, Algolia distinguishes search users by their IP address, _unless_ you include a pseudonymous user identifier in your search requests with the `userToken` API parameter or `x-algolia-usertoken` request header.
14
-
By default, the analyzed period includes the last eight days including the current day.
13
+
By default:
14
+
15
+
- Algolia distinguishes search users by their IP address, _unless_ you include a pseudonymous user identifier in your search requests with the `userToken` API parameter or `x-algolia-usertoken` request header.
16
+
- The analyzed period includes the last eight days including the current day.
0 commit comments