What do you want to automate

with Google Search Console and GitHub?

Prompt, edit and deploy AI agents that connect to Google Search Console, GitHub and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Retrieve Site Performance Data with Google Search Console API on New Branch Created from GitHub API
GitHub + Google Search Console
 
Try it
Retrieve Site Performance Data with Google Search Console API on New Card in Column (Classic Projects) from GitHub API
GitHub + Google Search Console
 
Try it
Retrieve Site Performance Data with Google Search Console API on New Collaborator from GitHub API
GitHub + Google Search Console
 
Try it
Retrieve Site Performance Data with Google Search Console API on New Commit Comment from GitHub API
GitHub + Google Search Console
 
Try it
Retrieve Site Performance Data with Google Search Console API on New Commit from GitHub API
GitHub + Google Search Console
 
Try it
New Branch Created from the GitHub API

Emit new event when a branch is created.

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added

 
Try it
New Commit from the GitHub API

Emit new event when commits are pushed to a branch

 
Try it
New Commit Comment from the GitHub API

Emit new event when a commit comment is created

 
Try it
Retrieve Site Performance Data with the Google Search Console API

Fetches search analytics from Google Search Console for a verified site.

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See the documentation

 
Try it
Submit URL for Indexing with the Google Search Console API

Sends a URL update notification to the Google Indexing API

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See the documentation

 
Try it
Create Branch with the GitHub API

Create a new branch in a Github repo. See the documentation

 
Try it
Integrate the Google Search Console API with the GitHub API
Setup the Google Search Console API trigger to run a workflow which integrates with the GitHub API. Pipedream's integration platform allows you to integrate Google Search Console and GitHub remarkably fast. Free for developers.

Overview of Google Search Console

The Google Search Console API opens a treasure trove of data and insights about your website's presence in Google Search results. You can get detailed reports on your site's search traffic, manage and test your site's sitemaps and robots.txt files, and see which queries bring users to your site. On Pipedream, utilize this API to automate checks on site performance, integrate with other tools for deeper analysis, or keep tabs on your SEO strategy's effectiveness.

Working with Domain Properties and Subdomains

Google Search Console distinguishes between URL properties and Domain properties:

  • URL properties are specific site URLs (e.g., https://example.com or https://www.example.com)
  • Domain properties include all subdomains and protocols (e.g., sc-domain:example.com)

When working with subdomains:

  1. Select the domain property from the dropdown (e.g., sc-domain:example.com)
  2. Enter the subdomain URL in the "Subdomain Filter" field (e.g., https://mcp.example.com)
  3. By default, this will filter for pages containing that subdomain URL, including all subpages like https://mcp.example.com/app/slack

This approach ensures you can access subdomain data even if the subdomain isn't individually verified in Search Console.

Important: Getting Data for Individual Pages

To see data broken down by individual pages (rather than just aggregate data):

  • Add "page" to your dimensions list
  • This will return separate rows for each page, rather than a single aggregated row

For advanced filtering needs, you can also:

  • Change the filter dimension (page, query, country, etc.)
  • Change the filter operator (contains, equals, etc.)
  • Or use the advanced filters for complete customization

Example Use Cases

  • SEO Performance Report to Slack: Automate daily or weekly SEO performance reports. Use the Google Search Console API to fetch search analytics data, then send a summary report to a Slack channel, keeping the team informed about trends, keyword rankings, and click-through rates.

  • Sync Search Results with Google Sheets: Create a workflow that periodically pulls data from the Google Search Console API and adds it to a Google Sheet. This is useful for maintaining an evolving dataset for deeper analysis, historical reference, or sharing insights across teams without giving direct access to the Search Console.

  • Automatic Sitemap Submission: Set up a Pipedream workflow that triggers whenever a new sitemap is generated in your content management system (CMS). The workflow can then automatically submit the sitemap to Google Search Console via API, ensuring Google has the latest structure of your site for crawling and indexing.

Connect Google Search Console

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    google_search_console: {
      type: "app",
      app: "google_search_console",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/webmasters/v3/sites`,
      headers: {
        Authorization: `Bearer ${this.google_search_console.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of GitHub

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

Connect GitHub

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo