Google Search Console filtering by page/URL

Status: Open · Asked by pabbler on · 0 views

pabbler — Question ·

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

Arshil Ahmad — Reply ·

Hi @pabbler,

Please allow us some time to look into the possibility of your use case. We will get back to you shortly.

pabbler — Reply ·

@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
}

Pabblymember11 — Reply ·

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/

Back to all forum threads · Log in to reply