GET:site/search/analytics

Response

{
    "popular": {
        "search": [
            
            // multiple search queries are supported
            {
                "averageClicksPerSearch": "{average-clicks}",
                "averagePosition": "{average-position}",
                "hits" "{hits}",
                "mostRecent": "{most-recent}",
                "query": "{query}",
                "results": "{count.results}",
                "total": "{count.total}",
                "topresult": {
                    "@type": "{top-result/@type}",
                    "@hits" "{top-result/@hits}",                 
                    "page": {top-result/page}                                        
                }                
            }
            ...
        ]
    },
    "volume": {volume}
}
Name Type Description
{average-clicks} double The average count of clicks for the search query
{average-position} double The average position of the clicked search result whenever it matches provided search terms
{hits} int Total count of search result clicks
{most-recent} datetime RFC 1123 representation of the most recent click timestamp
{query} string The search query
{count.results} int The total count of matching results
{count.total} int The total count of times the search query was executed
{top-result/@type} {page, recommended, file} The most clicked search result type
{top-result/@hits} int The most clicked search result total count of clicks
{top-result/page} Page The most clicked search result
{volume} Search Analytics Volume The historical volume of search analytics data

Search Analytics Volume

{
    "clickTotal": "{clicks}",
    "clickthroughRate": "{click-through-rate}",
    "point": [
            
        // multiple points (clicks grouped by day) are supported
        {
            "clicks": "{point/clicks}",
            "date": "{point/date}",
            "searchesClicked": "{point/searchesClicked}",
            "total": "{point/total}"
        }
        ...
    ],
    "searchTotal": "{searches}",
    "searchesClickedTotal": "{searches-clicked}"
}
Name Type Description
{clicks} int The total count of clicked search results
{click-through-rate} double The average click through rate
{searches} int The total count of search queries
{searches-clicked} int The total count of times that a result result was clicked
{point/clicks} int The total count of clicked search results for a day
{point/date} datetime RFC 1123 representation of the day clicks are grouped by
{point/searchesClicked} int The total count of times for a day that a search result was clicked
{point/total} int The total count of search queries for a day