Reports
Reports
Query Web Search Results
Get web search results for a given category.
post/v1/reports/web-search-results
Request body
Example request
{
"order_by": {
"date": "asc"
}
}Response
Successful Response
Example response
{
"data": [
{
"dimensions": [
"example.com",
"/some/path",
"2023-10-01"
],
"metrics": [
10,
0.05
]
}
],
"info": {
"query": {
"date_interval": "day",
"dimensions": [
"hostname",
"path",
"date"
],
"filters": [
{
"field": "hostname",
"operator": "is",
"value": "example.com"
}
],
"metrics": [
"count",
"search_share"
]
},
"total_rows": 200
}
}