• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

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