The generated API clients are a work in progress, you can also find our stable clients on the Algolia documentation.

Skip to main content

Analytics API (1.0.0)

Download OpenAPI specification:Download

API powering the Analytics feature of Algolia.

Search Analytics

Get all search analytics.

Get top searches

Returns top searches. Limited to the 1000 most frequent ones. For each search, also returns the average number of hits returned.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

clickAnalytics
boolean
Default: false

Whether to include the click-through and conversion rates for a search.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

orderBy
string (orderBy)
Default: "searchCount"
Enum: "searchCount" "clickThroughRate" "conversionRate" "averageClickPosition"

Reorder the results.

direction
string (direction)
Default: "asc"
Enum: "asc" "desc"

The sorting of the result.

limit
integer
Default: 10

Number of records to return. Limit is the size of the page.

offset
integer
Default: 0

Position of the starting record. Used for paging. 0 is the first record.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
Example
{
  • "searches": [
    ]
}

Get searches count

Returns the number of searches across the given time range. The endpoint returns a value for the complete given time range, as well as a value per day.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "count": 0,
  • "dates": [
    ]
}

Get top searches with no results

Returns top searches that didn't return any results. Limited to the 1000 most frequent ones.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

limit
integer
Default: 10

Number of records to return. Limit is the size of the page.

offset
integer
Default: 0

Position of the starting record. Used for paging. 0 is the first record.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "searches": [
    ]
}

Get top searches with no clicks

Returns top searches that didn't lead to any clicks. Limited to the 1000 most frequent ones. For each search, also returns the average number of found hits.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

limit
integer
Default: 10

Number of records to return. Limit is the size of the page.

offset
integer
Default: 0

Position of the starting record. Used for paging. 0 is the first record.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "searches": [
    ]
}

Get no results rate

Returns the rate at which searches didn't return any results. The endpoint returns a value for the complete given time range, as well as a value per day. It also returns the count of searches and searches without results used to compute the rates.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "rate": 0,
  • "count": 0,
  • "noResultCount": 0,
  • "dates": [
    ]
}

Get no click rate

Returns the rate at which searches didn't lead to any clicks. The endpoint returns a value for the complete given time range, as well as a value per day. It also returns the count of searches and searches without clicks.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "rate": 0,
  • "count": 0,
  • "noClickCount": 0,
  • "dates": [
    ]
}

Get top hits

Returns top hits. Limited to the 1000 most frequent ones.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

search
string

The query term to search for. Must match the exact user input.

clickAnalytics
boolean
Default: false

Whether to include the click-through and conversion rates for a search.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

limit
integer
Default: 10

Number of records to return. Limit is the size of the page.

offset
integer
Default: 0

Position of the starting record. Used for paging. 0 is the first record.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
Example
{
  • "hits": [
    ]
}

Get users count

Returns the distinct count of users across the given time range. The endpoint returns a value for the complete given time range, as well as a value per day.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "count": 0,
  • "dates": [
    ]
}

Get top filter attributes

Returns top filter attributes. Limited to the 1000 most used filters.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

search
string

The query term to search for. Must match the exact user input.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

limit
integer
Default: 10

Number of records to return. Limit is the size of the page.

offset
integer
Default: 0

Position of the starting record. Used for paging. 0 is the first record.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "attributes": [
    ]
}

Get top filters for the an attribute

Returns top filters for the given attribute. Limited to the 1000 most used filters.

Authorizations:
(appIdapiKey)
path Parameters
attribute
required
string

The exact name of the attribute.

query Parameters
index
required
string

The index name to target.

search
string

The query term to search for. Must match the exact user input.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

limit
integer
Default: 10

Number of records to return. Limit is the size of the page.

offset
integer
Default: 0

Position of the starting record. Used for paging. 0 is the first record.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "values": [
    ]
}

Get top filters for a no result search

Returns top filters with no results. Limited to the 1000 most used filters.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

search
string

The query term to search for. Must match the exact user input.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

limit
integer
Default: 10

Number of records to return. Limit is the size of the page.

offset
integer
Default: 0

Position of the starting record. Used for paging. 0 is the first record.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "values": [
    ]
}

Get top countries

Returns top countries. Limited to the 1000 most frequent ones.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

limit
integer
Default: 10

Number of records to return. Limit is the size of the page.

offset
integer
Default: 0

Position of the starting record. Used for paging. 0 is the first record.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "countries": [
    ]
}

Click Analytics

Get all click analytics.

Get average click position

Returns the average click position. The endpoint returns a value for the complete given time range, as well as a value per day.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "average": 0,
  • "clickCount": 0,
  • "dates": [
    ]
}

Get clicks per positions

Returns the distribution of clicks per range of positions.

If the groups all have a count of 0, it means Algolia didn’t receive any click events for the queries with the clickAnalytics search parameter set to true. The count is 0 until Algolia receives at least one click event.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "positions": [
    ]
}

Get click-through rate (CTR)

Returns a click-through rate (CTR). The endpoint returns a value for the complete given time range, as well as a value per day. It also returns the count of clicks and searches used to compute the rates.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "rate": 0,
  • "clickCount": 0,
  • "trackedSearchCount": 0,
  • "dates": [
    ]
}

Get conversion rate (CR)

Returns a conversion rate (CR). The endpoint returns a value for the complete given time range, as well as a value per day. It also returns the count of conversion and searches used to compute the rates.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

startDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: startDate=1999-09-19

The lower bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

endDate
string^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01...
Example: endDate=2000-01-21

The upper bound timestamp (a date, a string like "2006-01-02") of the period to analyze.

tags
string

Filter metrics on the provided tags. Each tag must correspond to an analyticsTags set at search time. Multiple tags can be combined with the operators OR and AND. If a tag contains characters like spaces or parentheses, it should be URL encoded.

Responses

Response samples

Content type
application/json
{
  • "rate": 0,
  • "trackedSearchCount": 0,
  • "conversionCount": 0,
  • "dates": [
    ]
}

Advanced

Advanced operations.

Get Analytics API status

Returns the latest update time of the analytics API for a given index. If the index has been recently created and/or no search has been performed yet the updated time will be null.

Authorizations:
(appIdapiKey)
query Parameters
index
required
string

The index name to target.

Responses

Response samples

Content type
application/json
{
  • "updatedAt": "string"
}