Skip to main content

Node Inputs

Required Fields

Site URL (Property):
The URL of the property in Google Search Console from which Discover data will be retrieved.
Example: "https://www.example.com/"
Start Date:
The beginning of the date range for retrieving Discover data.
Example: "2024-10-01"
End Date:
The end of the date range for retrieving Discover data.
Example: "2024-10-19"

Optional Fields

Row Limit:
The maximum number of rows to retrieve.
Example: 100
Default: 1000
Data Type:
The type of Discover data to retrieve.
Available options:
  • discover: Google Discover traffic
    Default: discover

Node Output

Discover Performance:
A dataset containing Google Discover performance metrics including impressions, clicks, and CTR.
Example Output:
{
  "site_url": "https://www.example.com/",
  "date_range": {
    "start": "2024-10-01",
    "end": "2024-10-19"
  },
  "total_clicks": 12450,
  "total_impressions": 345000,
  "average_ctr": 3.61,
  "data": [
    {
      "page": "https://www.example.com/article-1",
      "clicks": 3250,
      "impressions": 89000,
      "ctr": 3.65
    },
    {
      "page": "https://www.example.com/article-2",
      "clicks": 2890,
      "impressions": 76500,
      "ctr": 3.78
    }
  ]
}

Node Functionality

The Google Discover node:
  • Retrieves performance data specifically for Google Discover traffic.
  • Provides insights into which content performs well on Google Discover.
  • Tracks impressions, clicks, and CTR for Discover traffic.
  • Helps optimize content for Google Discover recommendations.
  • Supports date range filtering for trend analysis.
I