HEllo,
Figuring out the API documentation from Google's Search Console as a non-dev isn't that easy. This is what i Came up with as a handy query for Klipfolio:
Top 50 search keywords for last 60 Days:
- Query URL: https://www.googleapis.com/webmasters/v3/sites/<your site here URL encoded>/searchAnalytics/query
- Data Format: JSON
- Method:POST
-
Body:
{
"startDate": "{date.last60Days}",
"endDate": "{date.today}",
"dimensions": ["query"],
"rowLimit": 50
}
-
Parameters:
Name: content-type
Value: application/json
Type: Header
Top 50 search organic search landing pages for last 60 Days:
Change
"dimensions": ["query"],
in to
"dimensions": ["page"],
Date Values that seem to work:
-
start-date={date.last7Days}
-
start-date={date.last60Days}
-
start-date={date.yesterday}
-
start-date={date.startOfWeek}
-
start-date={date.startOfMonth}
-
start-date={date.startOfQuarter}
-
start-date={date.startOfYear}