Google Search Console filtering by page/URL

pabbler

Member
I'm trying to fetch queries for specific URLs from GSC. However, I can't see any option to filter by page/URL. Instead, I'm being forced to filter by query which is not what I need. I wasn't able to find any videos/documentation on this either. How is it possible to fetch all queries of a specific URL from GSC using Pabbly? It looks like we'd need to be able to customize dimensionFilterGroups[].filters[].dimension to use "page" but it always defaults to "query" with no way to select any other of the several available strings documented here https://developers.google.com/webmaster-tools/v1/searchanalytics/query

pabbly_gsc_urls.png
 
Last edited:

pabbler

Member
@ArshilAhmad I used below custom API request as a workaround. Although it does work, I believe the standard Search Console integration should allow selecting *what* dimension you want to match (page or query) instead of forcing just "query".

{
"startDate": "3. Result : 2023-11-22",
"endDate": "2. Result : 2024-02-20",
"dimensions": ["query"],
"dimensionFilterGroups": [
{
"groupType": "and",
"filters": [
{
"dimension": "page",
"operator": "equals",
"expression": "1. URL : https://example.com/mypage/"
}
]
}
],
"rowLimit": 500
}
 
P

Pabblymember11

Guest
Thank you for your feedback. I understand your concern about the current Search Console integration. I'll make sure to pass along your suggestion for the ability to select the dimension (page or query) for matching purposes to the integration team. In the meantime, I'm glad to hear that the workaround with the custom API request is working for you and also request you to please post the request here - https://pabbly.featureos.app/
 
Top