🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Semrush to Google Sheets, backlink reports without exports

Lisa Granqvist Partner Workflow Automation Expert

Backlink reporting gets messy fast. One day you export a CSV, the next day you can’t find it, and by the time you paste numbers into a sheet, they’re already outdated.

SEO managers feel this during audits. Agency owners feel it when clients ask “can you resend that report?” And marketing generalists just trying to keep up end up doing backlink report automation by hand. This workflow turns a domain submission into a clean, logged report in Google Sheets.

You’ll see what the automation does, what you need to run it, and where the real time savings show up once you’re tracking multiple sites.

How This Automation Works

See how this solves the problem:

n8n Workflow Template: Semrush to Google Sheets, backlink reports without exports

The Challenge: Backlink Reporting Without Spreadsheet Chaos

Backlink checks sound quick until you’re doing them for five client domains, every week, with the same steps: log into a tool, run a report, export, reformat, paste into a “master” sheet, then explain why the numbers don’t match last time. It’s not just time. It’s the mental load of remembering which export is newest, which tab is “the one,” and whether you grabbed overview metrics or the detailed backlink rows. Small inconsistencies become big client conversations. Frankly, that’s the worst part.

The friction compounds. Here’s where it usually breaks down.

  • You end up with duplicated exports and slightly different date stamps, which makes comparisons unreliable.
  • Manual copy-paste introduces tiny errors (one wrong column, one missed row) that throw off totals.
  • Overview metrics live in one place and detailed backlink entries live somewhere else, so you can’t audit quickly.
  • Sharing becomes a chore because the “latest version” is always sitting on someone’s laptop.

The Fix: Semrush API to Google Sheets Logging

This workflow automates the entire backlink capture loop using the Semrush Backlink Checker API (via RapidAPI) and Google Sheets. You submit a domain through a simple form, and n8n sends that domain to Semrush in the background. The response comes back as structured data, then the workflow splits it into two useful layers: a high-level overview (think totals and referring domains) and a detailed list of individual backlinks (source URLs, anchors, and related metrics). Finally, it appends both layers into the right tabs in one Google Sheet, which means every run becomes a timestamped entry you can filter, chart, and share.

The workflow starts with a form submission. Then it calls the Semrush Backlink Checker endpoint through an HTTP request and reshapes the data into spreadsheet-friendly fields. Google Sheets receives the overview in one tab and the detailed backlink rows in another, so you get context and evidence in the same place.

What Changes: Before vs. After

Real-World Impact

Say you track 6 domains each week. Manually, a typical cycle is about 10 minutes to run a report, 10 minutes to export and clean it up, and another 10 minutes to paste and sanity-check totals, so roughly 30 minutes per domain (about 3 hours weekly). With this workflow, you submit each domain through the form in about a minute, then wait for the API call and sheet append to finish. You’re down to roughly 10 minutes of hands-on time total, and the sheet is already organized.

Requirements

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • RapidAPI to access the Semrush Backlink Checker API.
  • Google Sheets to store overview and backlink rows.
  • RapidAPI key (get it from RapidAPI “Endpoints” header).

Skill level: Beginner. You’ll connect accounts, paste an API key, and choose the target spreadsheet tabs.

Need help implementing this? Talk to an automation expert (free 15-minute consultation).

The Workflow Flow

A form submission kicks it off. Someone enters a website/domain in the n8n form trigger, which means your team can run checks without opening Semrush.

The workflow calls Semrush through RapidAPI. n8n sends an HTTP request with your RapidAPI headers and the submitted domain, then waits for the backlink response.

The data gets reshaped into two clean datasets. One part extracts overview metrics like total backlinks and referring domains, while another prepares the detailed backlink rows (URLs, anchor text, and related fields) so they land cleanly in columns.

Google Sheets becomes your living report. The workflow appends overview metrics into an “overview” tab and appends backlink entries into a “backlinks” tab, so history stays intact and reporting becomes consistent.

You can easily modify the form fields to include client name or campaign label based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Form Trigger

Set up the form that collects the target website for backlink analysis.

  1. Add and open Form Intake Trigger.
  2. Set Form Title to Semrush Backlink Checker.
  3. Set Form Description to Semrush Backlink Checker.
  4. In Form Fields, add a required field labeled website.

Step 2: Configure the External API Call

Send the submitted website to the Semrush Backlink Checker endpoint on RapidAPI.

  1. Add and open External API Call.
  2. Set URL to https://semrush-backlink-checker.p.rapidapi.com/backlink.php.
  3. Set Method to POST and enable Send Body.
  4. Set Content Type to multipart-form-data.
  5. In Body Parameters, add website with value ={{ $json.website }}.
  6. Enable Send Headers and add the following header parameters:
  7. x-rapidapi-host = semrush-backlink-checker.p.rapidapi.com
  8. x-rapidapi-key = [CONFIGURE_YOUR_API_KEY]

⚠️ Common Pitfall: Replace [CONFIGURE_YOUR_API_KEY] with your actual RapidAPI key, or the API call will fail.

Step 3: Set Up Parallel Data Shaping

Split the API response into overview metrics and detailed backlink rows. These nodes run in parallel after External API Call.

  1. Add Shape Overview Data and set JavaScript Code to return $input.first().json.data.semrushAPI.backlinksOverview;.
  2. Add Shape Detail List and set JavaScript Code to return $input.first().json.data.semrushAPI.backlinks;.
  3. Connect External API Call to both Shape Overview Data and Shape Detail List in parallel.

Tip: The execution flow is parallel: External API Call outputs to both Shape Overview Data and Shape Detail List in parallel.

Step 4: Configure Google Sheets Outputs

Append the shaped overview and detail data to two tabs in Google Sheets.

  1. Open Append Overview Sheet and set Operation to append.
  2. Set Authentication to serviceAccount.
  3. Select the target spreadsheet in Document (cached name shows backlinks) and set the Sheet Name to backlink overflow.
  4. Credential Required: Connect your googleApi credentials.
  5. Open Append Backlink Rows and set Operation to append.
  6. Set Authentication to serviceAccount and choose the same spreadsheet (cached name backlinks) with Sheet Name set to backlinks.
  7. Credential Required: Connect your googleApi credentials.
  8. Ensure the column schema includes fields like targetUrl, sourceUrl, sourceTitle, pageAscore, lastSeen, firstSeen, anchor, and nofollow for auto-mapping.

Step 5: Test and Activate Your Workflow

Run a full test to confirm data flows through both parallel paths and into Google Sheets.

  1. Click Test Workflow and submit the form in Form Intake Trigger with a valid website URL.
  2. Verify External API Call returns a successful response.
  3. Confirm Shape Overview Data and Shape Detail List both execute in parallel.
  4. Check your Google Sheets tabs to confirm a new row in Append Overview Sheet and multiple rows in Append Backlink Rows.
  5. Once validated, toggle the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Watch Out For

  • RapidAPI credentials can expire or you may be on the wrong plan tier. If things break, check your RapidAPI dashboard and the “x-rapidapi-key” header value first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Google Sheets appends can silently “work” while putting data in the wrong tab. Double-check the spreadsheet ID and the exact sheet/tab names in both append steps before you run this for clients.

Common Questions

How quickly can I implement this backlink report automation?

About 30 minutes if your RapidAPI key and Google Sheet are ready.

Can non-technical teams implement this backlink report automation?

Yes. No coding required, but you do need to be comfortable pasting an API key and selecting the right Google Sheets tabs.

Is n8n free to use for this backlink report automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in RapidAPI/Semrush Backlink Checker API costs (there’s usually a free tier for testing, then paid usage).

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

How do I adapt this backlink report automation solution to my specific challenges?

You can add fields to the Form Intake Trigger (like client name, campaign, or account manager) and pass them through to both Google Sheets append steps. If you want a different data destination, you can replace the Append Overview Sheet and Append Backlink Rows steps with Microsoft Excel 365, Google Docs tables, or even an email summary. Common tweaks include filtering for “new backlinks only,” tagging runs by date range, and alerting your team when referring domains drop.

Why is my RapidAPI connection failing in this workflow?

Usually it’s an invalid or expired “x-rapidapi-key” value, so regenerate the key and update the HTTP Request headers in n8n. It can also be plan limits or a blocked endpoint on your RapidAPI subscription. If the domain format is inconsistent (with protocols, paths, or spaces), normalize it in the form input before sending it.

What’s the capacity of this backlink report automation solution?

On self-hosted n8n, capacity mostly depends on your server and RapidAPI rate limits. Practically, many teams run dozens of domains per day without issues as long as they don’t hammer the API all at once. If you expect high volume, add a short delay between runs and keep your Google Sheet tidy to avoid slow append operations.

Is this backlink report automation better than using Zapier or Make?

Often, yes, especially if you want to control how the Semrush API response gets split into “overview” vs “detailed rows.” n8n makes it easier to reshape data, handle conditional logic, and keep everything in one workflow without paying extra for every branch. Zapier and Make can still work, but you may spend more time fighting formatting and multi-step data mapping. Also, self-hosting n8n means you’re not paying per task when you scale up to lots of domains. If you’re unsure, Talk to an automation expert and we’ll sanity-check your use case.

Once this is running, backlink reporting becomes a system instead of a scramble. Your sheet stays current, your audits stay consistent, and you stop exporting files just to feel “caught up.”

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal