> For the complete documentation index, see [llms.txt](https://help.daasity.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.daasity.com/core-concepts/data-models/data-explores/source-specific/algolia.md).

# Algolia

## Overview

This explore uses a single view created as a result of the Algolia integration.&#x20;

{% hint style="success" %}
The data has Not undergone transformation code
{% endhint %}

This Explore can help answer questions about searches on your website such as:

* What are the top searches on their website?
* What searches provide the highest click-through rates?
* What products are customers struggling to find and are using search to help find?

There is only a single View for Algolia:

**sitesearch\_algolia\_detail**

| **Filters, Dimensions & Measures** | **Category** | **Code**                                                                            | **Description**                                        |
| ---------------------------------- | ------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------ |
| Unaverage Position                 | Internal     | Clicks \* Average Click Position                                                    | The unaveraged total position to allow for aggregation |
| Unaverage Hits                     | Internal     | Searches \* Hits                                                                    | The overall search and hit volume                      |
| Searches                           | Measure      | SUM(searches)                                                                       | Total number of searches                               |
| Clicks                             | Measure      | SUM(clicks)                                                                         | Total number of clicks                                 |
| Average Click Position             | Measure      | CASE WHEN ${clicks} = 0 THEN NULL ELSE 1.00 \* ${unaverage\_position}/${clicks} END | The average click position                             |
| Click-Through Rate                 | Measure      | CASE WHEN ${searches} = 0 THEN NULL ELSE 1.00 \* ${clicks}/${searches} END          | The rate at which users clicked on search links        |
| Average Hits                       | Measure      | CASE WHEN ${searches} = 0 THEN NULL ELSE 1.00 \* ${unaverage\_hits}/${searches} END | The average number of hits (results) for each search   |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.daasity.com/core-concepts/data-models/data-explores/source-specific/algolia.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
