What do you want to automate

with Vercel and Google Search Console?

Prompt, edit and deploy AI agents that connect to Vercel, Google Search Console 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 Deployment from Vercel API
Vercel + Google Search Console
 
Try it
Submit URL for Indexing with Google Search Console API on New Deployment from Vercel API
Vercel + Google Search Console
 
Try it
New Deployment from the Vercel API

Emit new event when a deployment is created

 
Try it
Cancel Deployment with the Vercel API

Cancel a deployment which is currently building. See the documentation

 
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 Deployment with the Vercel API

Create a new deployment from a GitHub repository. 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
List Deployments with the Vercel API

List deployments under the account corresponding to the API token. See the documentation

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

Overview of Vercel

The Vercel API empowers developers to automate, manage, and interact with their Vercel projects and deployments directly through code. With the Vercel API on Pipedream, you can harness the power of serverless functions to create dynamic and responsive workflows. Automate deployment processes, sync deployment statuses with other tools, trigger notifications based on deployment events, or manage your domains and aliases—all within the seamless integration landscape of Pipedream.

Connect Vercel

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: {
    vercel_token_auth: {
      type: "app",
      app: "vercel_token_auth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.vercel.com/www/user`,
      headers: {
        Authorization: `Bearer ${this.vercel_token_auth.$auth.personal_access_token}`,
      },
    })
  },
})

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}`,
      },
    })
  },
})

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